예제 #1
0
static void elyap(latoomutalpha_struct *latoomutalpha) {
	double results[M_var_count];
	int i;
	if (lyapunov_full((void *) latoomutalpha, (t_gotfn) calc, M_var_count, latoomutalpha -> vars, results) != NULL) {
		post("elyapunov:");
		for(i = 0; i < M_var_count; i++) { post("%d: %3.80f", i, results[i]); }
	}
}
예제 #2
0
파일: base3.c 프로젝트: Angeldude/pd
static void elyap(base3_struct *base3) {
	double results[M_var_count];
	int i;
	if (lyapunov_full((void *) base3, (t_gotfn) calc, M_var_count, base3 -> vars, results) != NULL) {
		post("elyapunov:");
		for(i = 0; i < M_var_count; i++) { post("%d: %3.80f", i, results[i]); }
	}
}
예제 #3
0
파일: dejong.c 프로젝트: Angeldude/pd
static void elyap(dejong_struct *dejong) {
	double results[M_var_count];
	int i;
	if (lyapunov_full((void *) dejong, (t_gotfn) calc, M_var_count, dejong -> vars, results) != NULL) {
		post("elyapunov:");
		for(i = 0; i < M_var_count; i++) { post("%d: %3.80f", i, results[i]); }
	}
}
예제 #4
0
static void elyap(mlogistic_struct *mlogistic) {
	double results[M_var_count];
	int i;
	if (lyapunov_full((void *) mlogistic, (t_gotfn) calc, M_var_count, mlogistic -> vars, results) != NULL) {
		post("elyapunov:");
		for(i = 0; i < M_var_count; i++) { post("%d: %3.80f", i, results[i]); }
	}
}
예제 #5
0
파일: rossler.c 프로젝트: kmatheussen/libpd
static void elyap(rossler_struct *rossler) {
	double results[M_var_count];
	int i;
	if (lyapunov_full((void *) rossler, (t_gotfn) calc, M_var_count, rossler -> vars, results) != NULL) {
		post("elyapunov:");
		for(i = 0; i < M_var_count; i++) { post("%d: %3.80f", i, results[i]); }
	}
}
예제 #6
0
파일: three_d.c 프로젝트: Angeldude/pd
static void elyap(three_d_struct *three_d) {
	double results[M_var_count];
	int i;
	if (lyapunov_full((void *) three_d, (t_gotfn) calc, M_var_count, three_d -> vars, results) != NULL) {
		post("elyapunov:");
		for(i = 0; i < M_var_count; i++) { post("%d: %3.80f", i, results[i]); }
	}
}
예제 #7
0
파일: popcorn.c 프로젝트: kmatheussen/libpd
static void elyap(popcorn_struct *popcorn) {
	double results[M_var_count];
	int i;
	if (lyapunov_full((void *) popcorn, (t_gotfn) calc, M_var_count, popcorn -> vars, results) != NULL) {
		post("elyapunov:");
		for(i = 0; i < M_var_count; i++) { post("%d: %3.80f", i, results[i]); }
	}
}
예제 #8
0
static void elyap(strange1_struct *strange1) {
	double results[M_var_count];
	int i;
	if (lyapunov_full((void *) strange1, (t_gotfn) calc, M_var_count, strange1 -> vars, results) != NULL) {
		post("elyapunov:");
		for(i = 0; i < M_var_count; i++) { post("%d: %3.80f", i, results[i]); }
	}
}