using image command for data with three columns
조회 수: 3 (최근 30일)
이전 댓글 표시
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];
채택된 답변
Walter Roberson
2024년 1월 16일
편집: Walter Roberson
2024년 1월 16일
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);
추가 답변 (1개)
Udit06
2024년 1월 16일
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;
참고 항목
카테고리
Help Center 및 File Exchange에서 Purple에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!