作者sjgau (sjgau)
看板Cad_Cae
標題Re: [問題] autolisp讀取excel座標?
時間Sun Aug 31 13:08:20 2008
※ 引述《xko (大家一起想好名字**)》之銘言:
: 大家好,
: 請問在excel裡已經有很多點的座標,
: 我要怎麼將那些座標匯入autocad呢?
在 excel 裡面,另存新檔,
採用 文字檔 (Tab 字元分隔)
產生 book3.txt
如下面的 C語言程式設計,
讀 book3.txt, 產生 book4.scr
進入 AutoCAD, script 這個 book4.scr
即可叫 AutoCAD 自動畫圖
: 另外就是匯入後要怎樣將那些點自動
: 連成線呢?
: thanks
#include "stdafx.h"
#include <process.h>
int _tmain(int argc, _TCHAR* argv[])
{
FILE *f1;
double x[100], y[100];
int ct= -1, no, i;
f1= fopen("d:\\book3.txt", "rt");
while (!feof(f1)) {
ct++;
no= fscanf(f1, "%lg %lg\n", &x[ct], &y[ct]);
printf("%5ld, %10.6lf, %10.6lf\n", no, x[ct], y[ct]);
}
printf("\n\n ct= %d\n", ct);
system("pause");
fclose(f1);
// ------------------------------------------
f1= fopen("d:\\book4.scr", "wt");
fprintf(f1, "spline\n");
for (i=0;i<= ct;i++) {
fprintf(f1, "%.6lf,%.6lf\n", x[i], y[i]);
}
fprintf(f1, "\n\n\n");
fclose(f1);
printf("\n\n Done!\n");
system("pause");
return 0;
}// end of main()
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 118.231.143.32
1F:推 Egriawei:其實我都偷偷把s大的code抓下來再弄成GUI介面的形式來用 08/31 13:17
2F:→ Egriawei:等完成度高一點也貼上來回饋一下:) 08/31 13:17
3F:→ sjgau:其實,我在中間的過程,有一些珍貴的測試方法,改天po上來 08/31 13:37
4F:→ sjgau:我在 excel 裡面放的資料是 y= sin(x), x= 0 to pi, 16等分 08/31 13:42
5F:→ sjgau:我在C裡面讀進來,如何證明 讀取正確?我使用 simpson 積分 08/31 13:43
6F:→ sjgau:來證明 y= sin(x), x= 0 to pi, 積分的結果是 ??? 08/31 13:43
7F:→ sjgau:進入 AutoCAD 以後,我使用 area 指令計算 曲線下面的面積 08/31 13:44
8F:→ sjgau:兩者獲得的結果要 一致,同時要接近理論的答案:2.000 08/31 13:45