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.
ratio = @(eqv,z) exp(eqv*(z*F)/(R*T));
ratio = @(T,eqv,z) exp(eqv*(z*F)/(R*T));
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.