Whenever I run this function, all is good if A(i)==N. However when it is not found, the function seems to run super slowly that i never end up getting the output of 0. Do I need to preallocate somewhere? If so, what would it be?

3 次查看(过去 30 天)
"Write a function, Finder, that receives an array of numbers A and a number N and returns the position of N within the array A or the value zero if N is not present within A."
function pos=Finder(A,N)
found=false;
while ~found
for i=1:length(A);
if A(i)==N;
found=true;
break
end
end
end
if found
pos=i;
else
pos=0;
end
end

回答(1 个)

Walter Roberson
Walter Roberson 2017-9-11
You should use either a while loop or a for loop, but not both.

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by