发布网友 发布时间:2022-04-30 14:56
共3个回答
热心网友 时间:2022-06-06 15:27
用LISP编程实现: ;;定义x和t的函数 (defun x-t(t) (setq x (* 4.0 t)) ) ;;定义y和t的函数 (defun y-t(t) (setq y (+ (* 3.0 t) (* 5.0 t t))) ) ;;定义绘制程序 (defun c:draw-x-y(lower-limit upper-limit step) (setvar "osmode" 0) (setq i lower-limit) (setq x (x-t i)) (setq y (y-t i)) (setq p1 '(x y)) (while (< i upper-limit) (setq i (+ i step)) (setq x (x-t i)) (setq y (y-t i)) (setq p2 '(x y)) (command "_line" p1 p2 "") (setq p1 p2) ) )热心网友 时间:2022-06-06 15:27
好像不支持,但可以描点画出来,不仿试一下?热心网友 时间:2022-06-06 15:28
就是啊,不支持,还请哪位高手做个外挂或小程序, 感谢,wdfyy@163.com