Effacer les filtres
Effacer les filtres

3D Mesh Graph

1 vue (au cours des 30 derniers jours)
parnal patni
parnal patni le 30 Nov 2018
Commenté : parnal patni le 4 Déc 2018
Hello,
I have a table of X axis as cloumns and Y axis are rows and the cell values are Z axis, How can I plot a graph .
How to provide Z axis data in matlab ?
Below attached is my table of contents
  6 commentaires
Mark Sherstan
Mark Sherstan le 30 Nov 2018
Please provide the actual data and not just an image we need to type in manually.
parnal patni
parnal patni le 3 Déc 2018

Connectez-vous pour commenter.

Réponse acceptée

KSSV
KSSV le 3 Déc 2018
Modifié(e) : KSSV le 3 Déc 2018
[T,txt,raw] = xlsread('Table_for3DGraph.xlsx') ;
x = T(1,2:end) ;
y = T(2:end,1) ;
Z = T(2:end,2:end) ;
[X,Y] = meshgrid(x,y) ;
surf(X,Y,Z)
  1 commentaire
parnal patni
parnal patni le 4 Déc 2018
How to put legend depending on the colour shown in the graph?
Foe Example I need to put the colour and what it represents. What I need is not a colour map but instead put that colour shown in the range of number in colourmap separately.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Line Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by