photo

Karim Belkhiria


自 2015 起处于活动状态

Followers: 0   Following: 0

消息

统计学

MATLAB Answers

4 个提问
1 个回答

排名
215,506
of 300,988

声誉
0

贡献数
4 个提问
1 个回答

回答接受率
50.0%

收到投票数
0

排名
 of 21,130

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 172,218

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 1

查看徽章

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...

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

2

个回答