problem with getting for loop to work
2 views (last 30 days)
Show older comments
function int=calculateintegral(from,to,subinterval)
inttemp=0;
if rem(subinterval,2)>0
int='subinterval must be devidable on two'
else
for x=from+subinterval:subinterval*2:to-subinterval
y1=4*exp(-(x)^2)
y2=2*exp(-(x+((to-from)/subinterval))^2)
inttemp=inttemp+y1+y2
end
end
int=inttemp
when i ran it in matlab it does not seem to loop through the for-loop or the if-condition:
>> calculateintegral(0,1,1000)
int =
0
ans =
0
>> calculateintegral(0,1,1001)
int =
0
ans =
0
0 Comments
Accepted Answer
Fangjun Jiang
on 12 Nov 2011
Use your input argument, your for-loop looks like this:
for x=1000:2000:-999
No loop is executed at all.
I don't think your subinterval is defined correctly. Running calculateintegral(0,100,2) seems to give you some results.
0 Comments
More Answers (0)
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!