Effacer les filtres
Effacer les filtres

How would one go about defining polynomials in MATLAB?

1 vue (au cours des 30 derniers jours)
Husnain Khalil
Husnain Khalil le 26 Fév 2018
Commenté : Husnain Khalil le 26 Fév 2018
1. Define P1=s^6+7s^5+2s4+9s^3+10s^2+12^s+15,
P2=s^6+9s^5+8s^4+9s^3+12s^2+15s+20
I have tried to create a row matrix and use polyval but because s is an undefined value I'm unsure how to proceed from there.
  2 commentaires
Torsten
Torsten le 26 Fév 2018
No s needed.
Take a look at the example under
https://de.mathworks.com/help/matlab/ref/polyval.html
Best wishes
Torsten.
Husnain Khalil
Husnain Khalil le 26 Fév 2018
Hi Torsten,
Thanks for replying but I'm still unsure how it would work. If I put my code as:
p1=[1 7 2 9 10 12 15] then try and use poly, it does not work.
nor does: poly([1 [6]], [7 [5]], [2 [4]], [9 [3]], [10 [2]], [12 [1]], [15 [0]],[s])
could you provide any further clarification?
Regards,
Husnain Khalil

Connectez-vous pour commenter.

Réponse acceptée

Image Analyst
Image Analyst le 26 Fév 2018
Try this:
s = linspace(-1, 1, 500);
P1=s.^6+...
7 * s .^ 5+...
2 * s .^ 4+...
9 * s .^ 3+...
10 * s .^ 2+...
12 * s + 15;
plot(s, P1, 'b-', 'LineWidth', 2);
grid on;
P2=s .^ 6 + ...
9 * s .^ 5 + ...
8 * s .^ 4 + ...
9 * s .^ 3 + ...
12 * s .^ 2 + ...
15 * s + 20;
hold on;
plot(s, P2, 'r-', 'LineWidth', 2);
legend('P1', 'P2');
  2 commentaires
Image Analyst
Image Analyst le 26 Fév 2018
Modifié(e) : Image Analyst le 26 Fév 2018
Or this:
s = linspace(-1, 1, 500);
coefficients1=[1 7 2 9 10 12 15]
P1 = polyval(coefficients1, s);
plot(s, P1, 'b-', 'LineWidth', 2);
grid on;
coefficients2 = [1 9 8 9 12 15 20]
P2 = polyval(coefficients2, s);
hold on;
plot(s, P2, 'r-', 'LineWidth', 2);
legend('P1', 'P2');
Husnain Khalil
Husnain Khalil le 26 Fév 2018
Thanks, I'm going over the code but the plot makes it much easier to understand what's going on.
Regards,
Husnain Khalil

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Line Plots dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by