// [このプログラムの目的]1個の ?字曲線を媒介変数を用いて描くこと(その2),
// 2010年3月3日(水)



// file name:Q_curve_2.c



#include< stdio.h>

#include< math.h>



void main(void)

{

	double x,y,a,b,c,d,k,p,q,pi;// pi は円周率

	double t,dt;// 媒介変数とその変分

	double tmax;// t の最大値

	double xx[10001],yy[10001];// メモリ容量に注意

	int i,imax;



	FILE *fp;



//  定数設定

	a=0.;

	b=0.2;

	c=0.5;

	d=0.3;

	k=0.5;

	p=1.8;

	q=1.3;

	

	pi=3.1415927;

	 

//  他のパラメータ設定

	tmax=4.0*pi;

	dt=2*tmax/4000;// t のプロット間隔



//  計算実行

	i=0;

	for(t=-tmax;t<=tmax;t=t+dt)

		{

		i++;

x=a*((exp(p*t*t)-1.)/(exp(p*t*t)+1.))+c*t*t*t*t*t*t*exp(-q*t*t)*cos(k*t*t);

y=b*((exp(p*t*t)-1.)/(exp(p*t*t)+1.))+d*t*t*t*t*t*t*exp(-q*t*t)*sin(k*t*t);

		yy[i]=y;

		xx[i]=x;

		printf("i=%d,x=%f,y=%f\n",i,x,y);

		}

	imax=i;



	fp=fopen("S_curve.txt","w");

	if(fp==NULL)

		{

		printf("FILE OPEN ERROR\n");

		}

	else

		{

		for(i=1;i<=imax;i++)

			{

			fprintf(fp,"%f,%f\n",xx[i],yy[i]);

			}

		fflush(fp);

		fclose(fp);

		}

	printf("end\n");

}// the end of the program





戻る