// プロットするサンプル座標値配列を用意 float xData[11]; float yData[11]; for(int i=0; i<=10; i++){ xData[i] = i; yData[i] = xData[i] * xData[i]; }