Scatter plot with extra features

5 visualizaciones (últimos 30 días)
BeeTiaw
BeeTiaw el 13 de Mzo. de 2019
Comentada: BeeTiaw el 19 de Mzo. de 2019
Hi expert,
I want to create a scatter plot where each individual points have one extra information which I also want to plot, i.e. their azimuth.
The data is shown below
data=[
% Temp Pres Azim
41 78 45
66 44 0
170 66 120
136 27 100
137 52 110];
The azimuth listed in the third column of the data is measured from the top of each data points (or circle) clockwise from [0,360deg].
How do I do this? The following plot has been generated manually by adding the blue line that shows the azimuth of each points.
Picture3.png
Thank you!

Respuesta aceptada

Guillaume
Guillaume el 13 de Mzo. de 2019
halflength = 2;
scatter(data(:, 1), data(:, 2), 'MarkerEdgeColor', 'b', 'MarkerFaceColor', 'r')
for row = 1:size(data, 1)
line(data(row, 1) + sind(data(row, 3)) * [-halflength, halflength], ...
data(row, 2) + cosd(data(row, 3)) * [-halflength, halflength], ...
'Color', 'b');
end
  4 comentarios
Guillaume
Guillaume el 14 de Mzo. de 2019
Indeed, make sure the aspect ratio is is the same on both axis.
BeeTiaw
BeeTiaw el 19 de Mzo. de 2019
Thanks @Akira Agata!

Iniciar sesión para comentar.

Más respuestas (1)

Akira Agata
Akira Agata el 13 de Mzo. de 2019
How about using quiver function? Here is an example.
data = [
% Temp Pres Azim
41 78 45
66 44 0
170 66 120
136 27 100
137 52 110];
u = 10*sind(data(:,3));
v = 10*cosd(data(:,3));
figure
scatter(data(:,1),data(:,2))
hold on
quiver(data(:,1)-u/2,data(:,2)-v/2,u,v,'AutoScale','off')
daspect([1 1 1])
xlabel('Temp','FontSize',12)
ylabel('Pres','FontSize',12)
box on
grid on
quiver.png

Categorías

Más información sobre Scatter Plots 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