能不能将符号矩阵输出到txt文件
不知道为什么在命令窗口中显示不出那个符号阵,想输出到txt文件中 没看明白,是不是因为符号矩阵中每个符号的长度大,导致只显示的符号的长度? 大概是因为符号矩阵中的元素太长,在命令窗口中输入该矩阵,都只能显示最后一行,命令窗口的滚动条又不能拖动能不能输出到txt文件中,请高手指教 命令窗口的滚动条又不能拖动
不可能吧 原帖由 skysurfer 于 2007-3-14 17:47 发表
不知道为什么在命令窗口中显示不出那个符号阵,想输出到txt文件中
为什么不直接将代码贴出来呢?
你这样叫人很难猜出你说的情况是怎样. 我想楼主的意思大概是
把一个具有符号表达式的矩阵直接写到文本文档里去
如果单个的符号表达式能写进去
应该就没问题不过偶没试过 就是如lxq所说
比如:
syms x y z
a=
如何将a输出到txt文件中? it is a nice question ,
here are some code for you,hope it can help you!
%=========================================
clc;clear;
syms x y z
a=;
a=char(a);
imfile='txt';
fid=fopen(strcat(),'w');
fwrite(fid,a);
fclose(fid);
%==========================================
the result is :
matrix([,]),
maybe it is not what you want, i think it is just the form problem!you can modify the code
according to the assitance document -----"fwrite.doc".
hope you can finish the work!
by the way,please show usthe fanalresult of you work !
i am looking forward to it!
[ 本帖最后由 yukeyyxh 于 2007-3-19 16:39 编辑 ] 多谢楼上的解答
其实我是看到一位朋友的程序得到的想法,是一个计算偏导数的程序,得到的结果是很大的一个符号矩阵,我就想能不能把结果输出
页:
[1]