Triangular plot, Plotting, MATLAB, Ternary plot, color plot, Contour map
Mostrar comentarios más antiguos
Still no one could help me with this question. I have a .csv file with 3 columns of different range of data. Each column contains 500,000 rows including some duplicate numbers. I am trying to plot a color plot like the one I attached here. A triangular color plot, like conotur map.
1 comentario
Onkar Khadke
el 26 de Ag. de 2021
Hello Farshad,
I am too looking for getting a triangular plot. Did you made any more progress on that, if so then kindly share the script for my reference. Your help is appreciated Thank you
Respuestas (2)
KSSV
el 20 de Oct. de 2020
Let A be your m*3 column array. Try this:
x = A(:,1) ; y = A(:,2) ; z = A(:,3) ;
%%structured
xi = unique(x) ; yi = unique(y) ;
[X,Y] = meshgrid(xi,yi) ;
Z = reshape(z,size(X)) ;
figure
surf(X,Y,Z)
%%unstructured
dt = delaunayTriangulation(x,y) ;
tri = dt.ConnectivityList ;
figure
trisurf(tri,x,y,z)
%% USe Interpoaltion
m = 100 ; n = 100 ;
xi = linspace(min(x),max(x),m) ;
yi = linspace(min(y),max(y),n) ;
[X,Y] = meshgrid(xi,yi) ;
Z = griddata(x,y,z,X,Y) ;
pcolor(X,Y,Z)
shading interp
colorbar
6 comentarios
Farshad Daraei Ghadikolaei
el 20 de Oct. de 2020
KSSV
el 20 de Oct. de 2020
It is a mistake with class of variables. Attach your data here. You should read the data into matrix. I think you are reading it as a table.
Farshad Daraei Ghadikolaei
el 20 de Oct. de 2020
KSSV
el 20 de Oct. de 2020
You read the data like below:
A = xlsread("4b2_Combine.csv") ;
% remove outliers
x(x>100) = [] ;
y(y>100) = [] ;
z(z>100) = [];
% USe griddata
m = 1000 ; n = 1000 ;
xi = linspace(min(x),max(x),m) ;
yi = linspace(min(y),max(y),n) ;
[X,Y] = meshgrid(xi,yi) ;
Z = griddata(x,y,z,X,Y) ;
pcolor(X,Y,Z)
shading interp
colorbar
Farshad Daraei Ghadikolaei
el 20 de Oct. de 2020
KSSV
el 20 de Oct. de 2020
If you know the triangular dimension.......make the vertices....use inpolygon and pick only the points inside this triangle and plot.
Farshad Daraei Ghadikolaei
el 20 de Oct. de 2020
0 votos
2 comentarios
KSSV
el 20 de Oct. de 2020
No that will not help....do you have triangle coordinates?
Farshad Daraei Ghadikolaei
el 20 de Oct. de 2020
Categorías
Más información sobre Surface and Mesh Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!