How to plot x and y with x evaluated in a function
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Niklas Kurz
el 20 de Jun. de 2020
Comentada: madhan ravi
el 20 de Jun. de 2020
It seems to be such an easy thing but I can't right remember
So, I've got an array of x values (2708x1) and y values(2708x1) and a function Amp(x). How to plot(Amp(x),y) ?
0 comentarios
Respuesta aceptada
madhan ravi
el 20 de Jun. de 2020
x = ...;
y = ...;
plot(Amp(x),y)
4 comentarios
madhan ravi
el 20 de Jun. de 2020
Amp = @(x) 6.344*10^(-7)*x.^6 + 3.938*10^(-5)*x.^5 -0.001053*x.^4 -0.01953*x.^3 + 0.2699*x.^2 + -13.92*x + 502.4;
x = M{:,1};
y = M{:,2};
plot(Amp(x),y)
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!