ton121212 发表于 2009-4-16 14:00:37

怎么导出Maple的图形数据呢?

想在Maple的纵作标上写个希腊字母,一直写不出来,想导出Maple数据到txt文件,怎么实现?另外,旧版本的Maple的怎么在图形上写希腊字母,请高手执教。

feiyuzhen 发表于 2009-4-16 20:08:04

http://www.cca-es.com/bbs/dispbbs.asp?boardID=6&ID=22591&page=1

TBE_Legend 发表于 2009-4-16 21:15:48

谢谢 feiyuzhen

ton121212 发表于 2009-4-16 22:54:43

十分感谢!!!!!

TBE_Legend 发表于 2009-4-18 22:10:09

贴一个3D图形的导出(来自wiki book)

--------------------------
> P := plot3d(sin(x*y),x=-2..2,y=-2..2):
> Q:= < op(indets(P,Array))>;
                         [ 25 x 25 Matrix       ]
                  Q := [ Data Type: float]
                         [ Storage: rectangular ]
                         [ Order: C_order       ]

You can then export this data to a file and insert in a spreadsheet.

1. Export to a tab delimited file:

Right-click on the output and choose:

Export As -> Tab Deliminated

save it to a tab-delimited format file with extension .xls. Click on the file (if the extension is associated) or import as tab delimited. Your data will then be in the spreadsheet.

2. The same result by a command:

> ExportMatrix("plot.xls",Q);

3. Only in Standard GUI (Maple 11 or later), export to .xls format:

> with(ExcelTools);                        
> Export(Q, "plot.xls");
------------------------------------------


2D也可以仿照这个思路来做,也简单,但是注意下,type中没有curves这个类型哦。
页: [1]
查看完整版本: 怎么导出Maple的图形数据呢?