clear all
clc
test = zeros(3,1);
first = 11;
first = 15;
first = 18;
我想拥有数组:
11
15
18
答案 0 :(得分:3)
这是MATLAB中的一个简单的实例数组操作,可以使用vertcat
来完成:
$videos = Photo::whereIn('id', $subscribes)->get();
或者语法不同的相同:
test = vertcat(test, first, second, third)
或者,如果您希望最终得到test = [test; first; second; third]
],请执行
[11; 15; 18
或
test = vertcat(first, second, third)