我需要在Matlab中使用以下格式绘制一个单元格数组:
{[vector1], [vector2], ...}
进入2D图形,矢量索引为y,矢量为x
([vector1], 1), ([vector2], 2), ...
答案 0 :(得分:2)
这是一个简单的选择:
% some arbitrary data:
CellData = {rand(10,1)*50,rand(10,1)*50,rand(10,1)*50};
% Define x and y:
x = cell2mat(CellData);
y = ones(size(x,1),1)*(1:size(x,2));
% plot:
plot(x,y,'o')
ylim([0 size(x,2)+1])
所以你将x
的每个向量绘制在一个单独的y
值上:
只要您的单元格数组只是一个向量列表,它就会起作用。
编辑:对于非等向量
您必须使用hold
的for循环:
% some arbitrary data:
CellData = {rand(5,1)*50,rand(6,1)*50,rand(7,1)*50,rand(8,1)*50,rand(9,1)*50};
figure;
hold on
for ii = 1:length(CellData)
x = CellData{ii};
y = ones(size(x,1),1)*ii;
plot(x,y,'o')
end
ylim([0 ii+1])
hold off
希望这能回答你的问题;)
答案 1 :(得分:1)
这是我(蛮力)对您的请求的解释。可能有更优雅的解决方案。
此代码生成一个点图,它将每个索引处的矢量值放在y轴 - 底部到顶部。它可以容纳不同长度的矢量。您可以将其设为矢量分布的点图,但如果可能出现多次相同或几乎相同的值,则可能需要向x值添加一些抖动。
% random data--three vectors from range 1:10 of different lengths
for i = 1:3
dataVals{i} = randi(10,randi(10,1),1);
end
dotSize = 14;
% plot the first vector with dots and increase the dot size
% I happen to like filled circles for this, and this is how I do it.
h = plot(dataVals{1}, ones(length(dataVals{1}), 1),'.r');
set(h,'markers', dotSize);
ax = gca;
axis([0 11 0 4]); % set axis limits
% set the Y axis labels to whole numbers
ax.YTickLabel = {'','','1','','2','','3','','',}';
hold on;
% plot the rest of the vectors
for i=2:length(dataVals)
h = plot(dataVals{i}, ones(length(dataVals{i}),1)*i,'.r');
set(h, 'markers', dotSize);
end
hold off
答案 2 :(得分:0)