if statements inside a function file and the function called by a for loop
4 次查看(过去 30 天)
显示 更早的评论
hi every body im new in matlab and i have this script
clear all
format long
k=100;
dx=1;
x=zeros(k,1);
y=zeros(k,1);
x(1)=1;
for n=2:k;
x(n)=x(n-1)+dx;
[ y ] = test( x );
end
tb=[x(1:k) y(1:k)]
and this function file
function [ y ] = test( x )
if x<25
y=x*2;
elseif x>25
y=x*10;
else
y=x*1000;
end
when i run it just the
else
y=x*1000;
end
part is evaluated, and i want all the x(n) be evaluated in the correct if.
what im doing wrong?
回答(3 个)
Walter Roberson
2013-1-25
An evaluated expression is true when the result is nonempty and contains all nonzero elements (logical or real numeric). Otherwise, the expression is false.
What are you testing? x<25.
How big is x?
Does x<25 result in all non-zero elements?
0 个评论
Roger Stafford
2013-1-25
编辑:Roger Stafford
2013-1-25
When you write "y=test(x)" rather than "y=test(x(n))" or "y=test(x(n+!))", you are passing 'test' an x vector with 100 elements in it and the resulting y will also have 100 elements. At the 'if' and 'elseif' points in 'test' each would always require that the given condition hold for all hundred cases of x and that is never true. Hence only the 'else' part is ever executed. Look up the documentation on 'if' and 'elseif'.
2 个评论
MEXICO
2013-1-25
1 个评论
Walter Roberson
2013-1-25
Please look in the MATLAB documentation for information about logical indexing.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!