How to express this equation to convert y values to a new vector and plot as a function of x?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Respuestas (1)
Askic V
el 11 de Mzo. de 2023
Editada: Askic V
el 11 de Mzo. de 2023
websave('test.xlsx','https://www.mathworks.com/matlabcentral/answers/uploaded_files/1321170/test.xlsx');
data = xlsread('test.xlsx')
x = data(:,1);
y = data(:,2);
% the rest should not be a problem
% z = y .*( (exp(x/k*T)-1) ./ (x/h).^2)
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!