How do i make an array like this?

1 次查看(过去 30 天)
Yuan Jun Lim
Yuan Jun Lim 2019-10-30
评论: Elijah Smith 2019-10-30
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 个评论
Yuan Jun Lim
Yuan Jun Lim 2019-10-30
If i were to put NANs in between,
how do i write it?
Sorry , i'm quite new to this.
Elijah Smith
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 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by