How to create a string that depends on user input variables?

1 Ansicht (letzte 30 Tage)
Joseph Wales
Joseph Wales am 28 Apr. 2018
Kommentiert: Rik am 1 Mär. 2021
Hi,
I am currently writing a script in which data collected from a separate file is used to plot curve fits.
I also need to include the equation used for the curve fit on the plot.
I encountered an issue when attempting to do this with a general polynomial, as the degree of the polynomial is decided by the user.
A shortened version of my code is this:
data = load('data_1.txt');
x = data(:,1);
y = data(:,2);
d = input('To what degree would you like your polynomial?');
p = polyfit(x,y,d);
yfit = polyval(p,x);
plot(x,y,'bo',x,yfit,'r--')
I need a way to create a string that is the correct form of the equation of the polynomial so that it can be properly displayed on the plot.
For example, if the user chooses degree 2, I need to display the equation "p(1)*x^2 + p(2)*x + p(3)" on the plot.
Is there a way to do this for any value of degree?
Any help is appreciated, thanks.

Antworten (2)

Rik
Rik am 28 Feb. 2021
You can create this text with sprintf and some minor tweaks:
str=sprintf('p(%d)*x^%d +', [1:d;(d-1):-1:0]);
str=strrep(str,'^1','');
str=strrep(str,'x^0 + ','');

Siyu Guo
Siyu Guo am 28 Apr. 2018
Try poly2str function. For example, s = poly2str(p, 'x').
  1 Kommentar
培林 王
培林 王 am 28 Feb. 2021
Well, I can't use this function now and I didn't find it in the toolbx. what's the problem?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Polynomials finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by