3D visualization of this data
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hello, This is my data matrix in MATLAB:
43.676289 -79.477386 1
43.676370 -79.477107 5
43.676517 -79.477375 20
43.676417 -79.477509 8
43.676129 -79.477278 15
First column is Y axis, second column is X axis and third column is my data. How do I draw a bar graph and how to adjust the color of bars according to the value of data (like colorbar in surfe graph) for each data point in MATLAB? the problem is unit of XY axis is not compatible with Z, and this made me confused. I added an example graph which I drew for another data matrix. In this example X,Y,Z were linear and I could draw this graph using 'surf' command with no problem. I need to draw the same graph for mentioned data.
0 Commenti
Risposte (1)
KSSV
il 24 Lug 2017
data = [ 43.676289 -79.477386 1
43.676370 -79.477107 5
43.676517 -79.477375 20
43.676417 -79.477509 8
43.676129 -79.477278 15];
y = data(:,1) ;
x = data(:,1) ;
z = data(:,3) ;
[X,Y] = meshgrid(x,y) ;
Z = repmat(z,1,size(X,1)) ;
surf(X,Y,Z)
colorbar
1 Commento
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!