Polynomials, MATLAB in Statistics

Assignment Help:

Polynomials:

Simple curves are polynomials of various degrees, or orders. The degree is the integer of the highest exponent in the expression. The illustrations are as follows:

  • A straight line is the first order or degree 1 polynomial of the form ax + b, or more clearly ax1+ b.
  • A quadratic is a second order (or degree 2) polynomial of the form ax2 + bx + c.
  • A cubic (degree 3) is of the form ax3 + bx2 + cx + d.

A MATLAB represents a polynomial as a row vector of coefficients. For illustration, the polynomial x3 + 2x2 - 4x + 3 would be represented by the vector [1 2 -4 3].

The polynomial 2x4 - x2 + 5 would be represented by [2 0 -1 0 5]; note that the zero terms for x3 and x1.

There are built-in functions sym2poly and poly2sym which convert symbolic expressions to polynomial vectors and vice versa, the illustration is as shown below:

>> myp = [1,2,-4,3];

>> poly2sym(myp)

ans =

x^3+2*x^2-4*x+3

>> mypoly = [2 0 -1 0 5];

>> poly2sym(mypoly)

ans =

2*x^4-x^2+5

>> sym2poly(ans)

ans =

2 0 -1 0 5


Related Discussions:- Polynomials

Illustration of nested for loops and the if statements, Illustration of nes...

Illustration of nested for loops and the if statements: For illustration,when the file contains: 33   -11  2  4      5   9 22     5  -7  2     11    3 the outco

Areacirc function, Areacirc function: The areacirc function can be cal...

Areacirc function: The areacirc function can be called from the Command Window as shown here, or from a script. Here is a script which will prompt the user for the radius of o

Input in a while loop, Input in a While Loop: The script below repeats...

Input in a While Loop: The script below repeats the procedure of prompting a user, the reading in a positive number, and echo-printing it, as long as the user properly enters

Properties of the text box - graphics objects, Properties of the text box -...

Properties of the text box - graphics objects: By using get will show properties of the text box, the illustration is as shown below: >> get(thand)   BackgroundColor

Working of editor and debugger, Working of Editor and debugger: Editor...

Working of Editor and debugger: Editor/Debugger, or commands can be typed from Command Window. For illustration, the dbstop command below will set a breakpoint in the fifth li

Example of median, Example of Median For the vector [1 4 5 9 12 33], th...

Example of Median For the vector [1 4 5 9 12 33], the median is the average of the 5 & 9 in the middle: >> median([1 4 5 9 12 33]) ans =     7

Illustration of input in a for loop, Illustration of Input in a for loop: ...

Illustration of Input in a for loop: In this illustration, the loop variable iv iterates through the values 1 through 3, therefore the action is repeated three times. The acti

Example of mode, Example of Mode When no value appears more often than ...

Example of Mode When no value appears more often than any other, the smallest value in the vector will be the mode of the vector. >> shortx = [2 5 1 4]; >> mode(shortx

Run-time or execution-time error, Run-time or execution-time error: Th...

Run-time or execution-time error: The Run-time, or execution-time, errors are found whenever a script or function is executing. With most of the languages, an illustration of

Illustration of indexing into vectors of structures, Illustration of Indexi...

Illustration of Indexing into vectors of structures: For illustration, the function to print the information from packages has been modified therefore in addition to the vecto

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd