photo

Mahaveer Singh


Last seen: nästan 4 år ago Active since 2021

Followers: 0   Following: 0

THE INNOVATIVE

Statistics

All
MATLAB Answers

1 Question
5 Answers

Cody

0 Problems
112 Solutions

RANK
8 551
of 298 292

REPUTATION
5

CONTRIBUTIONS
1 Question
5 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
3

RANK
 of 20 560

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
2 119
of 160 775

CONTRIBUTIONS
0 Problems
112 Solutions

SCORE
1 338

NUMBER OF BADGES
4

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

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

View badges

Feeds

View by

Answered
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

nästan 4 år ago | 1

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

nästan 4 år ago | 0

Question


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

nästan 4 år ago | 0 answers | 1

0

answers

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

nästan 4 år ago | 0

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

nästan 4 år ago | 1

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

nästan 4 år ago | 0