photo

Mahaveer Singh


Last seen: 4 years 前 自 2021 起处于活动状态

Followers: 0   Following: 0

THE INNOVATIVE

统计学

All
MATLAB Answers

1 个提问
5 个回答

Cody

0 个问题
112 个答案

排名
8,646
of 300,057

声誉
5

贡献数
1 个提问
5 个回答

回答接受率
0.0%

收到投票数
3

排名
 of 20,866

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
2,176
of 167,162

贡献数
0 个问题
112 个答案

评分
1,338

徽章数量
4

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • 3 Month Streak
  • Commenter
  • First Answer
  • Community Group Solver
  • Solver

查看徽章

Feeds

排序方式:

已回答
I want to create a matlab program to perform this operation and show the result in each operation in table
S=0; x(1)=0; % initial value of x. for i=2:1:200 for k=1:1:i-1 S(k)=x(i-k).*f(k); end x(i)=sum(S); end sumation=x

4 years 前 | 1

已回答
what is the error with my code
% give the initial value of sum. % like sum=0 (initial vlue of sum) N = 4; x = [ 3 4 5 6 ]; sum=0; for k = 0 : N-1 ...

4 years 前 | 0

提问


During Self-Paced Courses no training task provided in task window.
During Self-Paced Course of Simulink Onramp, I have faced a issue that in the assessment window there is no task provided. I hav...

4 years 前 | 0 个回答 | 1

0

个回答

已回答
help me --> Taylor series cos(x)
% n is required length of series.Give initial value of n as your imagination to speed up of %calculation. function y = mycos(x,...

4 years 前 | 0

已回答
How to create a Matrix
A=[22:-1:11]; M= reshape(A,4,3)

4 years 前 | 1

已回答
How can I determine the angle between two vectors in MATLAB?
function angle_in_degrees = vector2angle(u,v) a= sqrt(u(1)^2+u(2)^2+u(3)^2); b=sqrt(v(1)^2+v(2)^2+v(3)^2); c=0; for ...

4 years 前 | 0