How to combine two outputs of a into a single vector.

5 次查看(过去 30 天)
L = randi([2,5]);
lo = [1,5,10]
hi = [3,8,9]
for k = 1:length(hi)
if hi(k(1:end))>lo(k(1:end))
a=[lo(k):hi(k)]
end
end

采纳的回答

Star Strider
Star Strider 2020-3-11
I am not certain what result you want.
Try this:
L = randi([2,5]);
lo = [1,5,10];
hi = [3,8,9];
for k = 1:length(hi)
if hi(k(1:end))>lo(k(1:end))
a{k}=[lo(k):hi(k)];
end
end
  4 个评论
Pallav Patel
Pallav Patel 2020-3-11
Thank you Strider. I just started learning arrays and was trying to add them using a counter like loops withput arrays. This makes much sense. Both of them work but my book does not cover the braces function and I was unable to comprehend how it works but the second one has made itt easier to understand both methods.
Star Strider
Star Strider 2020-3-11
As always, my pleasure!
The first one creates ‘a’ as a cell array, then converts it to a numeric array using the square brackets. See the information in the See Also section of that documentation page to learn more about them.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by