Community Profile

photo

Shayan Sepahvand


Ryerson University

Last seen: 10ヶ月 前 2019 年からアクティブ

Followers: 0   Following: 0

連絡

Toronto, Canada

Spoken Languages:
English

統計

All
  • Explorer
  • Personal Best Downloads Level 2
  • Knowledgeable Level 1
  • First Answer
  • First Submission

バッジを表示

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

2年以上 前 | 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

2年以上 前 | 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]%...

2年以上 前 | 0

| 採用済み

回答済み
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...

2年以上 前 | 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...

2年以上 前 | 0