Plot blocks of points with a specific color

6 次查看(过去 30 天)
Hi,
I got these points and I want to colour every 4 points with a specific color:
x = [ 1 1 1 1 1 2 2 2 2 2 3 3 3 3 3 4 4 4 4 4 5 5 5 5 5]';
y = [ 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5]';
Point 1:4 yellow, 5:8 blue, 9:12 red, etc, and I want to plot all the 25 entries. the last "block" with just have the row number 25.
I though doing this:
[n,~] = size(x);
block_points = 4;
t_start = 1:block_points:n;
t_end = block_points:block_points:n;
but I got a problem with t_end, only has size 6, while t_start has size 7, due to the last block that only has 1 number.
Thanks for your help
  4 个评论
madhan ravi
madhan ravi 2018-11-28
编辑:madhan ravi 2018-11-28
ok so the effort put in order to help is for nothing? Just leave it open just don‘t accept the answer. Post your solution as an answer and accept it.
Tiago Dias
Tiago Dias 2018-11-28
First of all, I did not say that your help was for nothing, I appreatiate the time you spend on my question, like I wrote in the last comment I wrote.
I think I should not accept your answer since, it was not what I looking for, I wanted a more automatic procedure, depending on the variables and not the numbers. I was looking for something that could always work, no matter the X and Y provided, and I was able to acomplish that.
Like I said, thanks for your interest in my question, and the effort that you spent on it.

请先登录,再进行评论。

采纳的回答

Tiago Dias
Tiago Dias 2018-11-28
This is what I did to solve my question:
from a generic
X = [1:25]';
Y = [1:25]';
I want to plot each number of "rows" to a specific color
[n,m] = size(X);
rows = 3;
columns = ceil(n/rows);
extra_row = columns * rows;
X(n+1:extra_row) = NaN; Y(n+1:extra_row) = NaN;
X_new = reshape(X,rows,columns); Y_new = reshape(Y,rows,columns);
legenda = sprintfc('Mes %d', 1:columns);
for j = 1:size(X_new,2)
plot(X_new(:,j),Y_new(:,j),'*')
hold on
end

更多回答(1 个)

madhan ravi
madhan ravi 2018-11-26
编辑:madhan ravi 2018-11-26
EDITED
xx = [ 1 1 1 1 1 2 2 2 2 2 3 3 3 3 3 4 4 4 4 4 5 5 5 5 5]';
yy = [ 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5]';
x=reshape(xx(1:end-1),4,[]);
y=reshape(yy(1:end-1),4,[]);
s={'-oy','-ob','-or','-og','-om','-oy'};
for i=1:size(x,1)
plot(x(i,:),y(i,:),s{i})
hold on
end
plot(xx(end),yy(end),'ok',...
'markerFaceColor','k')
  9 个评论
madhan ravi
madhan ravi 2018-11-26
编辑:madhan ravi 2018-11-26
"I would transform a 26x1 matrix into a 4x7 matrix, with the 2 last entries could be NaN values for example."
matrix=[rand(26,1);zeros(2,1)] %this will do what you want just pad the remaining elements with zeros
Tiago Dias
Tiago Dias 2018-11-26
I am not explaining my self properly, i want it to be automaticly, i created a new topic for this, thanks for your time !

请先登录,再进行评论。

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by