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 Kommentare

KALYAN ACHARJYA
KALYAN ACHARJYA am 30 Nov. 2018
Attached table file?
Please check here
parnal patni
parnal patni am 30 Nov. 2018
I saw the attached link before, but I do not understand how the input is given for Z axis .
KALYAN ACHARJYA
KALYAN ACHARJYA am 30 Nov. 2018
Bearbeitet: KALYAN ACHARJYA am 30 Nov. 2018
Please attach table file?
parnal patni
parnal patni am 30 Nov. 2018
I alreay included the table for which I want to plot the graph for.
The table you see in the question above is the one which I want to plot
Mark Sherstan
Mark Sherstan am 30 Nov. 2018
Please provide the actual data and not just an image we need to type in manually.
parnal patni
parnal patni am 3 Dez. 2018

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

KSSV
KSSV am 3 Dez. 2018
Bearbeitet: KSSV am 3 Dez. 2018

0 Stimmen

[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 Kommentar

parnal patni
parnal patni am 4 Dez. 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.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Line Plots finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by