我遇到了一個問題。我必須使用MATLAB與Linux。我需要從MATLAB到Linux解析數據,反之亦然。在shell中解析變量從MATLAB到Linux,反之亦然
對於exammple
這一切都在
basic.sh
this basic.sh has to be opened in MATLAB
s=3 # is defined is MATLAB
##########################
for ((p=1 ; p<5; p++)) # from here starts the loop in Linux
do # is a command from Linux
echo "$p" # is a command from Linux
add= $p+s # should calulate in linux , is a command from Linux
add=add/5 # should do in MATLAB
done
#########################
add # should OUTPUT the value of add as there is no semicolumn in MATLAB
是writtein請給我建議一個可能的方式這樣一個小例子,其餘的我將擴大它自己。
問候
不是matlab具有相同的功能,你在bash中要做什麼? – chepner
@chepner我正在使用一個模擬軟件來生成一些數據 - 我必須優化和處理這些數據。爲了做到這一點,我必須編寫一個shell腳本。由於shell腳本在處理實數方面存在問題,因此我認爲如果能夠將兩個軟件的POWERS結合起來會更好。這就是爲什麼我寫了,我會擴大到我的需要。我需要一個開始和一個可能的方法。 –
啊哈!所以,**真正的**問題就是你如何在shell腳本中進行數學運算。您當然可以用'bash'標籤在SO上提出問題? –