I want to write the code for this equation:T2(i)=T1(i)+2*[T1(i-1)+T1(i+1)]
syms T1 T2
function [T2] = stat(T1)
for i=1:3
T2(i)=T1(i)*2+[T1(i-1,)+T1(i+1,)]*2
end
i want to code produce T2(111)=T1(111)+2*[T1(011)+T(211)]
and the loop go on .
but matlab giving this error
"Function definitions are not permitted at the prompt or in scripts"
How can I solve this problem?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…