How to loop through and create an nx2 vector?
4 次查看(过去 30 天)
显示 更早的评论
Hi there,
I have a function 'myfunction' that takes a single number as an input and returns a 1x2 vector. How do I perform a loop such that I can create an nx2 vector for multiple input values. I'm trying this but seem to be doing something wrong.
for i = 1:n
output(i) = [myfunction(i)];
end
thanks!
0 个评论
采纳的回答
per isakson
2015-3-1
编辑:per isakson
2015-3-1
Try
output = nan( 10, 2 );
for ii = 1:10
output(ii,:) = myfunction(ii);
end
and read
更多回答(0 个)
另请参阅
类别
在 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!