For loop invalid syntax problem, very frustrating.

I keep getting the error: "invalid syntax at 't' possibly a ),},or] is missing" I seriously have tried everything I can think of to fix this, but nothing works. help please.
for t = 1:250
Htheo(t)=4*(1-exp(-0.032t))
end

답변 (2개)

Roger Stafford
Roger Stafford 2015년 4월 14일

2 개 추천

Put an asterisk between the 0.032 and the 't':
Htheo(t)=4*(1-exp(-0.032*t))
Star Strider
Star Strider 2015년 4월 14일

2 개 추천

You’re missing a multiplication operator ‘*’. MATLAB doesn’t assume multiplication if no operator is stated.
This works:
for t = 1:250;
Htheo(t)=4*(1-exp(-0.032*t));
end

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

질문:

2015년 4월 14일

편집:

2015년 4월 15일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by