問題が発生しました。LinuxでMATLABを使用する必要があります。MATLABからLinuxに、またはその逆にデータを解析する必要があります。
たとえば
これはすべて書かれています
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
そのような小さな例の可能な方法を私に提案してください。残りは自分で拡張します。
よろしくお願いします