Board logo

标题: 如何在shell脚本中调用Matlab [打印本页]

作者: pengpengpang    时间: 2014-2-22 10:03     标题: 如何在shell脚本中调用Matlab

script language就像灵活的瑞士军刀,但进行某些专业处理会力不从心。譬如复杂的数学运算、建模、复杂的文本处理会等等。没关系,专业的人做专业的事,同样,专业的工具干专业的活,我们可以借助外部工具帮忙,譬如matlab、C/C++,vim等等,下面以Matlab为例,简单描述一下如何用shell脚本产生m程序,并用matlab工具来运行它。

程序的产生
菜鸟级:用echo,将每一句话都给echo进目标程序;
骨灰级:here document+重定向;举例如下

cat test.sh
--------------------------------------------------------
#!bin/bash

FileName=mat_prog.m
cat > $FileName <<EOF
%This is a matlab script

rn=round(random('normal',256,512,1000000,1));
rn(find(rn<64))=[];
rn(find(rn>1024))=[];

x=unique(rn);
hist(rn,x);

fid=fopen(`myfile.txt`,'w');
fprintf(fid,'%d\n',rn);
fclose(fid);
EOF


程序的运行

chmod +x $FileName
matlab -nodesktop -nosplash -nojvm -r "run ./$FileName;quit;"

转载自:http://blog.sina.com.cn/s/articlelist_1191884911_0_1.html




欢迎光临 电子技术论坛_中国专业的电子工程师学习交流社区-中电网技术论坛 (http://bbs.eccn.com/) Powered by Discuz! 7.0.0