photo

Kavita Guddad


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

Followers: 0   Following: 0

통계

MATLAB Answers

2 질문
2 답변

순위
8,214
of 300,364

평판
6

참여
2 질문
2 답변

답변 채택
50.0%

획득한 표
2

순위
 of 20,934

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 168,407

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Knowledgeable Level 1
  • Thankful Level 1
  • First Answer

배지 보기

Feeds

보기 기준

질문


Passing a data file to a function in parfor or parfeval
I want to pass a data file to process in parallel. Same data file to be used by each worker for complete process and each worker...

10개월 전 | 답변 수: 1 | 0

1

답변

답변 있음
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...

2년 초과 전 | 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...

2년 초과 전 | 답변 수: 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'...

2년 초과 전 | 0