How do i make an array like this?
이전 댓글 표시

Currently i have this variable.
Can i check how do i make the array to become like this? Theres 2 rows of empty spacing for every value.
4
5
5
5
댓글 수: 3
Adam
2019년 10월 30일
You can't have empty space in a numeric array. You would have to convert to a cell array or string array, or put NaNs inbetween instead.
Yuan Jun Lim
2019년 10월 30일
Elijah Smith
2019년 10월 30일
x = [4; NaN; NaN; 5; NaN; NaN; 5; NaN; NaN; 5];
%or
x = {};
x{1,1} = 4;
x{4,1} = 5;
x{7,1} = 5;
x{10,1} = 5;
%or
x = ["4";"";"";"5";"";"";"5";"";"";"5"]
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!