知識社群
登入
中文(台灣)
English(US)
Q&A
線上人數:
237
AutoCAD開放式教學
社群功能
社群首頁
文件區
(34)
精華區
行事曆
活動
討論區
(454)
即時塗鴉牆
問卷
相簿
(5)
申請加入社群
文件分類
[
總覽
]
未分類
(34)
程式設計相關
常用連結
版主在台灣大學 資工所 系統訓練班的 課程介紹網頁
良葛格的 C語言程式教學講義
社群資訊
訪客: 536352
文章: 34
討論: 454
公告: 2
容量: 剩餘
433 MB
(500 MB)
閱讀權限: 開放
分類:
電腦資訊 / 軟體教學
版主: 高顯忠
副版主: 無
位置:
AutoCAD開放式教學
>
討論區
>
討論
y= sin(x)
(高顯忠,
sjgau4311@gmail.com
, 2011-11-05 13:05)
1樓
; for x= 0 to pi step dx do ...
(setq no 16)
(setq x1 0.0 x2 pi dx (/ (- x2 x1) no))
; for x= x1 to x2 step dx do ,,,
(setq x x1 x2 (+ x2 (/ dx 10.0)))
(command "spline")
(while (<= x x2)
(setq y (sin x))
(command (list x y))
(setq x (+ x dx))
); end of while
(command "" "" "")
(princ)
附件
1.
PLOT-SIN.LSP
(1 KB)
© 2010 FormosaSoft Corp.
http://www.powercam.com.tw
service@powercam.com.tw
All rights reserved.
(setq no 16)
(setq x1 0.0 x2 pi dx (/ (- x2 x1) no))
; for x= x1 to x2 step dx do ,,,
(setq x x1 x2 (+ x2 (/ dx 10.0)))
(command "spline")
(while (<= x x2)
(setq y (sin x))
(command (list x y))
(setq x (+ x dx))
); end of while
(command "" "" "")
(princ)