提问


Extremum of polynomial?
Hello Experts, Consider I have polynomial coefficients vector p = [a_n,...,a_0]. I do d/dx p and get the Derivative of p. ...

13 years 前 | 1 个回答 | 0

1

个回答

提问


Polynomial min/max using coefficients vector?
Hello Experts, Consider I have polynomial and a vector p with it's coefficients. What function in Matlab gets such vector p ...

13 years 前 | 1 个回答 | 1

1

个回答

提问


What to change in code?
Hello Experts, Given the following code: <http://www.mathworks.com/matlabcentral/fileexchange/2305-numerical-methods-using...

13 years 前 | 1 个回答 | 0

1

个回答

提问


Bairstow Method to find polynomial roots matlab code problem
Hello Experts, I need matlab code of the Bairstow method to find polynomial roots. I have found here on our site a guy who wro...

13 years 前 | 4 个回答 | 0

4

个回答

提问


Function output in another function?
Hello Experts, For example I have: function t = test(a) in this function I use another function test2 but I need all th...

13 years 前 | 1 个回答 | 0

1

个回答

已回答
Newton's method problem
You can use this Newton function implementation in general. function n = newton(f,fp,x0,tol,Nmax) n=0; test_val =...

13 years 前 | 0

提问


Durand–Kerner method matlab code help? Anyone can help? Can't figure out what is wrong.
Hello Experts, A is a vector of polynomial coefficients and I need to find roots using the Durand-Kerner method. Please have ...

13 years 前 | 1 个回答 | 0

1

个回答

提问


Function Output selection help?
Hello Experts, I have a function func. I know that func can give me [output1,output2] and by default gives me the output1. ...

13 years 前 | 1 个回答 | 0

1

个回答

提问


Vector mirror?
Hello Experts, Given, for example, vector x = [4,-3,5,6]. I want it to be mirrored - x = [6,5,-3,4] How can I do it in Matlab...

13 years 前 | 1 个回答 | 1

1

个回答

提问


Sum polynomials function help?
Hello Experts, I have 2 or more polynomials of different degrees. Let x1 = [1,2,3,4] and x2=[5,6,7,8,9,10] I need to sum ...

13 years 前 | 3 个回答 | 0

3

个回答

提问


Custom Vector - make vector x to be [1,1,....]
Hello Experts, I want to create a vector x where all n elements are for example c. I can do this by: n=5; x=zero...

13 years 前 | 2 个回答 | 0

2

个回答

提问


Multiplication implementation help?
Hello Experts, I need to write MATLAB code and to build a product like this: for i from 1 to d, multiplication (x(i)-x(j)). x ...

13 years 前 | 1 个回答 | 0

1

个回答

提问


Jenkins-Traub Algorithm Matlab Code?
Hello Experts, I need the Jenkins Traub Algorithm for real coefficients. Please give me the code, not a built in function,...

13 years 前 | 0 个回答 | 0

0

个回答

提问


M file problem - spacing
Hello Experts, I have a matlab m-file, when I write for of if and hit enter it doesn't automatically do space. How do I corre...

13 years 前 | 1 个回答 | 0

1

个回答

提问


Anonymous Function Differentiation Problem?
Hello Experts, I have the following function: >>f = @(x) x^2-1. I want to find a function that will do differentiatio...

13 years 前 | 5 个回答 | 1

5

个回答