matrix Combine difference size
4 次查看(过去 30 天)
显示 更早的评论
Datas=[3.9717, 10.9791, 14.4306, 16.6604,16.5421, 13.9692; 5.9904, 10.2624, 14.3976, 16.5259, 16.5860, 13.8606]
allDataX=zeros(7,45)
for i=1:44
allDataX(:,i)=[i;Rss']
end
But Datas change size ı cant do.How can ı do
0 个评论
采纳的回答
Walter Roberson
2021-8-8
I am having to guess about what you are trying to do.
Datas=[3.9717, 10.9791, 14.4306, 16.6604,16.5421, 13.9692; 5.9904, 10.2624, 14.3976, 16.5259, 16.5860, 13.8606]
allDataX = zeros(size(Datas,2)+1,size(Datas,1));
for i=1:size(Datas,1)
allDataX(:,i)=[i;Datas(i,:).'];
end
allDataX
Or...
allDataX = [1:size(Datas,1); Datas.'];
allDataX
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!