Plotting excel data in MATLAB or any program

How do I plot an XYY graph? Please see the attached files.....
I would love to plot ("japs, himp and jack") as values of Y in the left Y-axis, and Temperature as the value of Y in the right Y-axis and "Time" for X on the X axis. The result should look similar to the one attached along with this message.
Thank you.

Respuestas (1)

KSSV
KSSV el 19 de Nov. de 2021
T = readtable('Calculation.xlsx')
figure
hold on
yyaxis left
plot(T.(1),T.(2),T.(1),T.(3),T.(1),T.(4))
yyaxis right
plot(T.(1),T.(6))

1 comentario

Olalekan Adesina
Olalekan Adesina el 19 de Nov. de 2021
Thanks for your response. But the output should look similar to the file that is attached to this message.
The question is to plot ("japs, himp and jack") as values of Y in the left Y-axis, and Temperature as the value of Y in the right Y-axis and "Time" for X on the X axis.
Thank you

Iniciar sesión para comentar.

Categorías

Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.

Productos

Versión

R2020a

Etiquetas

Preguntada:

el 19 de Nov. de 2021

Comentada:

el 19 de Nov. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by