Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Graphing using Matlab. How would you graph a function using matlab?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I am wondering how can you graph a function in MatLab? This is how I do it but the code doesn't work
% for matrix A
a = 24;
b = 4.8;
c = - 0.5 ;
d =0.43
%y= a+bx
hold on
for i = 0:20
y = a + b*i
plot(i,y)
end
% now y = a + b*x + c*x^2
% and y = a + b*x +c*x^2 +d*x^3
% how would you graph these function?
0 comentarios
Respuestas (1)
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!