필터 지우기
필터 지우기

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

조회 수: 5 (최근 30일)
Pallav Patel
Pallav Patel 2020년 3월 11일
댓글: Star Strider 2020년 3월 11일
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