Generate diagram in linear scale
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Berkay
el 30 de Ag. de 2022
Respondida: Abderrahim. B
el 30 de Ag. de 2022
I defined a polynomia;
P = [1 10 -13 -118 120]
I want to generate a diagram in linear scale of that polynomial in range from -100 to 100
How can I do it?
0 comentarios
Respuesta aceptada
Abderrahim. B
el 30 de Ag. de 2022
Hi!
See these 2 methods:
P = [1 10 -13 -118 120] ;
Method 1:
figure
plot(-100:100, polyval(P, -100:100))
Method 2:
myPoly = @(p)P(1)*p.^4 + P(2)*p.^3 -P(3)*p.^2 -P(4)*p.^1 + P(5) ;
plot(-100:100, myPoly(-100:100))
0 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Graph and Network Algorithms en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!