plotting a graph in a range

1 visualización (últimos 30 días)
Seungryul Lee
Seungryul Lee el 27 de Sept. de 2022
Respondida: Torsten el 27 de Sept. de 2022
Hi, I want to plot a graph of the value of ratio as a function of the temperature in the range of 283k to 313k.
R = 2.303 * 8.314;
T = 273 + 20;
F = 96500;
ratio = @(eqv,z) exp(eqv*(z*F)/(R*T));
%I'm using eqv=-0.06, z=1 for the ratio function.
ratio = @(T,eqv,z) exp(eqv*(z*F)/(R*T));
T = (283:313);
plot(T, ratio(T,-0.06,1))
This is the code I have for the ratio function, and the last three lines are what I did for plotting, but it's giving an error about the matrix dimension, the ratiov function, and the plot also.
Please help!
Thank you.

Respuesta aceptada

Torsten
Torsten el 27 de Sept. de 2022
R = 2.303 * 8.314;
F = 96500;
ratio = @(T,eqv,z) exp(eqv*(z*F)./(R*T));
T = 283:313;
plot(T, ratio(T,-0.06,1))

Más respuestas (0)

Categorías

Más información sobre Graphics Object Identification en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by