// [このプログラムの目的]1個の卵型曲線を描くこと(その5),2009年11月05日(木)
// file name: egg5a1.c
#include< stdio.h>
#include< math.h>
void main(void)
{
double x,y,a,b,c,pai;
double t,dt;
int i,imax;
double xx[10001],yy[10001];// メモリ容量の上限に注意
FILE *fp;
// 定数設定
pai=3.1415927;
a=1;
b=0.7;
c=0.1;
printf("a=%f\n\n",a);
// 他のパラメータ設定
dt=pai/1000;// 位相角 のプロット間隔
// 計算実行
i=0;
for(t=-2*pai;t<=2*pai;t=t+dt)
{
i++;
x=a*cos(t);
y=(b+c*cos(t))*sin(t);
yy[i]=y;
xx[i]=x;
printf("i=%d,x=%f,y=%f\n",i,x,y);
}
imax=i;
// テキストファイルへの計算データの格納
fp=fopen("egg-shaped 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
戻る