using image command for data with three columns

3 visualizaciones (últimos 30 días)
Sishu Shankar
Sishu Shankar el 16 de En. de 2024
Comentada: Sishu Shankar el 16 de En. de 2024
I have a datset with three columns.
The first column contains the data of x axis points.
The second axis contains the data of y axis points.
The third column contains integer indices either 1,2,3 corresponding to each (x,y) point.
I want to color code the x-y axis according to the indices alloted to each pair (x,y) and Color array
Col = [1,1,0; 0.7,0.7,0.7; 0.929,0.694,0.125];
  3 comentarios
Sishu Shankar
Sishu Shankar el 16 de En. de 2024
Editada: Sishu Shankar el 16 de En. de 2024
I want to plot a color coded plot, where I already have in the third column which colour to assign to each (x,y) point.
Say, the dataset looks like
dat = [ 0.3 0.4 1
0.5 0.8 2
0.1 0.1 3
0.5 0.4 2]
Col = [1,1,0; 0.7,0.7,0.7; 0.929,0.694,0.125];
for each (x_i,y_i), i have the color z_i = Col(i) associated but I am njot sure how to implement in MATLAB
Dyuman Joshi
Dyuman Joshi el 16 de En. de 2024
I understood that.
But, how should the values be plotted - should it be a scatter plot or a line plot?

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 16 de En. de 2024
Editada: Walter Roberson el 16 de En. de 2024
cmap = [1, 1, 0;
0.7, 0.7, 0.7;
0.929, 0.694, 0.125]
pointsize = [];
scatter(x, y, pointsize, third_column);
colormap(cmap);

Más respuestas (1)

Udit06
Udit06 el 16 de En. de 2024
Hi Sishu,
If you want a scatter plot, you can loop through each index and use the scatter function to plot all the points belonging to one index along with the color corresponding to the index in each iteration.
Here is the code implementation for the same:
% Replace these with your actual data
x = [1, 2, 3, 4]; % x data
y = [5, 6, 7, 8]; % y data
indices = [1, 2, 3, 1]; % indices data
% color array
Col = [1, 1, 0; 0.7, 0.7, 0.7; 0.929, 0.694, 0.125];
figure;
hold on;
% Loop through each unique index to plot the points
for idx = 1:size(Col, 1)
% Find the points that correspond to the current index
current_points = (indices == idx);
% Scatter the points using the corresponding row from Col
scatter(x(current_points), y(current_points), [], Col(idx, :), 'filled');
end
xlabel('X axis');
ylabel('Y axis');
title('Color-coded x-y points by index');
hold off;

Categorías

Más información sobre Purple en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by