photo

Shayan Sepahvand


Last seen: 대략 1년 전 2019년부터 활동

Followers: 0   Following: 0

메시지

Toronto, Canada

Spoken Languages:
English

통계

All
MATLAB Answers

0 질문
5 답변

File Exchange

9 파일

순위
4,096
of 300,369

평판
12

참여
0 질문
5 답변

답변 채택
0.00%

획득한 표
1

순위
4,762 of 20,936

평판
288

평균 평점
0.00

참여
9 파일

다운로드 수
30

ALL TIME 다운로드 수
2805

순위

of 168,436

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

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

대략 4년 전 | 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년 전 | 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년 전 | 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...

대략 4년 전 | 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년 전 | 0