Re: [問題] autolisp讀取excel座標?

看板Cad_Cae作者 (sjgau)時間15年前 (2008/08/31 13:08), 編輯推噓1(107)
留言8則, 2人參與, 最新討論串5/6 (看更多)
※ 引述《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

08/31 13:17, , 1F
其實我都偷偷把s大的code抓下來再弄成GUI介面的形式來用
08/31 13:17, 1F

08/31 13:17, , 2F
等完成度高一點也貼上來回饋一下:)
08/31 13:17, 2F

08/31 13:37, , 3F
其實,我在中間的過程,有一些珍貴的測試方法,改天po上來
08/31 13:37, 3F

08/31 13:42, , 4F
我在 excel 裡面放的資料是 y= sin(x), x= 0 to pi, 16等分
08/31 13:42, 4F

08/31 13:43, , 5F
我在C裡面讀進來,如何證明 讀取正確?我使用 simpson 積分
08/31 13:43, 5F

08/31 13:43, , 6F
來證明 y= sin(x), x= 0 to pi, 積分的結果是 ???
08/31 13:43, 6F

08/31 13:44, , 7F
進入 AutoCAD 以後,我使用 area 指令計算 曲線下面的面積
08/31 13:44, 7F

08/31 13:45, , 8F
兩者獲得的結果要 一致,同時要接近理論的答案:2.000
08/31 13:45, 8F
文章代碼(AID): #18kYT59Y (Cad_Cae)
討論串 (同標題文章)
文章代碼(AID): #18kYT59Y (Cad_Cae)