Shayan Sepahvand
Followers: 0 Following: 0
English
Statistics
RANK
4,172
of 300,688
REPUTATION
12
CONTRIBUTIONS
0 Questions
5 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
1
RANK
4,736 of 21,039
REPUTATION
291
AVERAGE RATING
0.00
CONTRIBUTIONS
9 Files
DOWNLOADS
34
ALL TIME DOWNLOADS
2837
RANK
of 170,148
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Can anyone please help me with the error in the code
Hi, the first argument of covar(sys, w) should be some LTI system (discrete in your case), I suggest you to first derive the...
4 years ago | 0
Compute the following using elementwise operations on a vector:
Hi, X = 0; for i = 1:100 X_t = 1/(2^(i-1)); X = X_t + X; end X
4 years ago | 0
Array indices must be positive integers or logical values. Error in ecgtest (line 9) chestNoDC=chest1(0:10000)- meanChest;
Hi, The first element of a vector is addressed by 1, not 0: (one-based indexing not zero-based) X = ones(1000,1); X = [1:20]%...
4 years ago | 0
| accepted
row of a random size matrix
Use this code: [m, n] = size(X);% X is that random matrix row_mat = zeros(m, 1); for i = 1:m row_mat = X(i,:); end row...
4 years ago | 1
Plot step response of discrete signal
Dear Luke, If you take the z-transform of both sides, you will get: then define a vector using ones(.) and set it as X. For...
4 years ago | 0




