Feeds
提问
How to plot the real function not just points in matlab?
I am trying to plot the function that is defined by the points (xi,yi), but I am just getting a plot of the points that i gave, ...
10 years 前 | 2 个回答 | 0
2
个回答提问
how can I create a polynom from some input variables that are output of another function?
I want to create and plot a polynom, whose coefficients are output from another function. Here is my code: function c = int...
10 years 前 | 0 个回答 | 0
0
个回答提问
problem matrix dimensions dont agree
I am trying to write a function that calculates the Vandermonde-Matrix. The function was working fine and everything is good, ...
10 years 前 | 1 个回答 | 0
1
个回答已回答
How to add power of x from 0 to n-1
here is the answer that I searched for: function c = vmonde(x, y) n = length(x); V = ones(n); for j = 2:n...
How to add power of x from 0 to n-1
here is the answer that I searched for: function c = vmonde(x, y) n = length(x); V = ones(n); for j = 2:n...
10 years 前 | 0
提问
How to add power of x from 0 to n-1
I have a function vandermonde function c = vandermonde(x, y) V = [x.^0 x x.^2 x.^3] c = V \ y; end it...
10 years 前 | 2 个回答 | 0
