t******g 发帖数: 1136 | 1 我用的mathematica 7 for student.
我想读一个mathematica 自带的文件,Polyhedra.m,
<< Polyhedra.m
但是总告诉我 Get::noopen: Cannot open Polyhedra.m. >>
请问这是怎么回事情?是不是因为这个是student edition?
谢谢! |
Q******g 发帖数: 607 | 2 where is the .m file? my 7.0 full version got the same error.
【在 t******g 的大作中提到】 : 我用的mathematica 7 for student. : 我想读一个mathematica 自带的文件,Polyhedra.m, : << Polyhedra.m : 但是总告诉我 Get::noopen: Cannot open Polyhedra.m. >> : 请问这是怎么回事情?是不是因为这个是student edition? : 谢谢!
|
t******g 发帖数: 1136 | 3 我正在学习mathematica.
看来的确找不到这些m file.
你在学校实验室用过吗?
【在 Q******g 的大作中提到】 : where is the .m file? my 7.0 full version got the same error.
|
Q******g 发帖数: 607 | 4 why do you need it any way?
doing research with polyhedra?
【在 t******g 的大作中提到】 : 我正在学习mathematica. : 看来的确找不到这些m file. : 你在学校实验室用过吗?
|
S*********k 发帖数: 507 | 5 Is this file's path in $Path ?
One can check by
FileNames["*.m",$Path,Infinity]
If it's not, you can do
Get["/path/to/Polyhedra.m"]
【在 t******g 的大作中提到】 : 我用的mathematica 7 for student. : 我想读一个mathematica 自带的文件,Polyhedra.m, : << Polyhedra.m : 但是总告诉我 Get::noopen: Cannot open Polyhedra.m. >> : 请问这是怎么回事情?是不是因为这个是student edition? : 谢谢!
|
t******g 发帖数: 1136 | 6 我输入:
Get["/path/to/Polyhedra.m"]
输出:
$Failed
我输入:
FileNames["*.m",$Path,Infinity]
出来一个很长的list, 的确有这个文件:
"C:\Program Files\Wolfram \
Research\Mathematica\7.0\AddOns\LegacyPackages\Graphics\\
Polyhedra.m",
是不是我装mathematica 没有装对?或者应该修改当前目录?
该怎么修改当前目录呢?
谢谢指点。
【在 S*********k 的大作中提到】 : Is this file's path in $Path ? : One can check by : FileNames["*.m",$Path,Infinity] : If it's not, you can do : Get["/path/to/Polyhedra.m"]
|
Q******g 发帖数: 607 | 7 if you read the error message, it said you do NOT need to import this packag
e any more. It's built in now.
Just try
PolyhedronData["Octahedron"]
【在 t******g 的大作中提到】 : 我输入: : Get["/path/to/Polyhedra.m"] : 输出: : $Failed : 我输入: : FileNames["*.m",$Path,Infinity] : 出来一个很长的list, 的确有这个文件: : "C:\Program Files\Wolfram \ : Research\Mathematica\7.0\AddOns\LegacyPackages\Graphics\\ : Polyhedra.m",
|
S*********k 发帖数: 507 | 8 看来楼主 manual/tutorial 一类的东西看的较少。
/path/to/
是要让你换成只想 Polyhedra.m 的路径。不过楼下的说的对
PolyhedraData 直接可以用。
http://reference.wolfram.com/mathematica/ref/PolyhedronData.htm
【在 t******g 的大作中提到】 : 我输入: : Get["/path/to/Polyhedra.m"] : 输出: : $Failed : 我输入: : FileNames["*.m",$Path,Infinity] : 出来一个很长的list, 的确有这个文件: : "C:\Program Files\Wolfram \ : Research\Mathematica\7.0\AddOns\LegacyPackages\Graphics\\ : Polyhedra.m",
|
t******g 发帖数: 1136 | 9 This is exactly solution. Thank you !
packag
【在 Q******g 的大作中提到】 : if you read the error message, it said you do NOT need to import this packag : e any more. It's built in now. : Just try : PolyhedronData["Octahedron"]
|