How can I vertically concatenate cells?

조회 수: 2 (최근 30일)
Nathan
Nathan 2019년 5월 24일
편집: James Tursa 2019년 5월 24일
I'm trying to vertically concatenate the output Nm so that I get an array column with alternating 'Long' and 'Short' based upon my input. I feel like this should be really simple to do, but I've been unable to find anything that works after a couple hours of searching. Any help would be much appreciated!
Ln = input('Maximal length? ');
if Ln >= 0.6
Nm = 'Long'
elseif Ln < 0.6
Nm = 'Short'
end
  댓글 수: 3
James Tursa
James Tursa 2019년 5월 24일
What is your desired output?
Nathan
Nathan 2019년 5월 24일
I'm just trying to get something that lists "Long, Short, Short, Long, Short" ... etc. based upon my inputs. I need this to be in a vertical column within an array/matrix/whatever the word is (I'm really new to matlab)

댓글을 달려면 로그인하십시오.

답변 (1개)

James Tursa
James Tursa 2019년 5월 24일
편집: James Tursa 2019년 5월 24일
I don't have much of a clue what you really need, but maybe this will give you a start on the MATLAB cell array syntax (with the curly braces { }) that could be of use to you:
n = 10;
Nm = cell(n,1);
for k=1:n
Ln = input('Maximal length? ');
if Ln >= 0.6
Nm{k} = 'Long';
else
Nm{k} = 'Short';
end
end
disp(Nm)
Then downstream in your code you can get at the individual strings with the syntax Nm{k}
If you needed to append an addition entry, you could do it like this:
Nm{end+1} = 'Long';

카테고리

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