Community Profile

photo

Kavita Guddad


Last seen: 5개월 전 2023년부터 활동

Followers: 0   Following: 0

통계

  • Knowledgeable Level 1
  • Thankful Level 1
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
I want to extract rows from my matrix that have a specific value in the second column.
Hope this code does your job. x=[1 2 3 5;2 3 4 5;2 1 3 4;2 1 3 2 ]; y=[]; for i=1:size(x,1) if (x(i,2)==1) y=[y...

10개월 전 | 0

| 수락됨

질문


why do we get different values by angle command
When i run this code i am getting the result as shown below clc;clear all; close all; N=input('Enter the fundamental period...

11개월 전 | 답변 수: 1 | 2

1

답변

답변 있음
DTFT possible on Matlab?
clc;clear all;close all; x=[2 3 6 -3]; n=0:length(x)-1; w=-pi:0.01:pi; [X] = dtft(x,w); subplot(311);stem(x);title('Signal'...

11개월 전 | 0