photo

Shayan Sepahvand


Last seen: oltre un anno fa Attivo dal 2019

Followers: 0   Following: 0

Messaggio

Toronto, Canada

Spoken Languages:
English

Statistica

All
MATLAB Answers

0 Domande
5 Risposte

File Exchange

9 File

RANK
4.188
of 301.533

REPUTAZIONE
12

CONTRIBUTI
0 Domande
5 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
1

RANK
4.700 of 21.316

REPUTAZIONE
297

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
9 File

DOWNLOAD
22

ALL TIME DOWNLOAD
2895

RANK

of 175.212

CONTRIBUTI
0 Problemi
0 Soluzioni

PUNTEGGIO
0

NUMERO DI BADGE
0

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

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

Visualizza badge

Feeds

Visto da

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

oltre 4 anni fa | 0

Risposto
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

oltre 4 anni fa | 0

Risposto
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]%...

oltre 4 anni fa | 0

| accettato

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

oltre 4 anni fa | 1

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

oltre 4 anni fa | 0