photo

vinicius lanziotti


2017년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

16 질문
1 답변

순위
155,972
of 300,780

평판
0

참여
16 질문
1 답변

답변 채택
50.0%

획득한 표
0

순위
 of 21,086

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 171,018

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Thankful Level 3

배지 보기

Feeds

보기 기준

답변 있음
How can I use subplot to plot three signals in the same figure?
No! I want to plot the 3 signals in different axes. Like the figure below:

6년 초과 전 | 0

질문


How can I use subplot to plot three signals in the same figure?
signal A signal B signal C

6년 초과 전 | 답변 수: 2 | 0

2

답변

질문


How can I see the filter function implementation code at MATLAB?
What's the command for I see the code of this function?

6년 초과 전 | 답변 수: 1 | 0

1

답변

질문


How can I implement myself a MATLAB 'filter' function as direct form I?
The MATLAB function filter was written as direct-form II transposed. But I need to write myself a filter function as direct-form...

6년 초과 전 | 답변 수: 0 | 0

0

답변

질문


What is the MATLAB function for FILTER in direct-form I?
I need of the code of this function, if it exists. I just know about the function 'filter', but this function was implemented ...

6년 초과 전 | 답변 수: 1 | 0

1

답변

질문


How to implement a generic 'filter' function using direct form I?
I need a code for the filter function in direct form I, like as I implemented a filter function in direct form II transposed bel...

6년 초과 전 | 답변 수: 1 | 0

1

답변

질문


what is the construct algorithm of MATLAB's dfilt.df1 function?
I need the MATLAB code of this function. Thank you!

6년 초과 전 | 답변 수: 0 | 0

0

답변

질문


what is the construct algorithm of MATLAB's dfilt.df1 function?
I need the MATLAB code of this function. Thank you.

6년 초과 전 | 답변 수: 1 | 0

1

답변

질문


HOW CAN I EXECUTE TWO LOOPS "FOR" IN THE SAME TIME?
[l,~]=size(barras); for k=1:quant_barras if k<=9 && SAIDA_FP(k,2)>=0 for i=1:l if SAIDA_FP(k,1) >= barras...

7년 초과 전 | 답변 수: 1 | 0

1

답변

질문


How to use "FOR" correctly in this example?
[l,~]=size(barras); for k=1:quant_barras if k<=9 && SAIDA_FP(k,2)>=0 for i=1:l if SAIDA_FP(k,1) >= barras...

7년 초과 전 | 답변 수: 0 | 0

0

답변

질문


How to find the corresponding vector?
x = [1 2 3 4 5]; d = [0 10 20 30 40 10 0 50 60 70 20 50 0 80 90 30 60 80 0 100 40 70 90 100 0]; Dist...

대략 8년 전 | 답변 수: 1 | 0

1

답변

질문


How to find the lowest distance?
x = [1 2 3 4 5]; d = [0 10 20 30 40 10 0 50 60 70 20 50 0 80 90 30 60 80 0 100 40 70 90 100 0]; ...

대략 8년 전 | 답변 수: 1 | 0

1

답변

질문


How to open a file .txt in MATLAB
a = input('\nEnter with a matrix .txt: '); archive = fopen('a'); b = fscanf(archive,'%f',[3 3]); fclose(archive); ...

대략 8년 전 | 답변 수: 1 | 0

1

답변

질문


How to find the lowest value of Dist?
x=[1 2 3 4 5]; d= [0 10 20 30 40; 10 0 50 60 70; 20 50 0 80 90; 30 60 80 0 100; 40 70 90 10...

대략 8년 전 | 답변 수: 1 | 0

1

답변

질문


How to sum the results of a loop?
I need to sum the values of D and put the result in a single variable... How can I do this? x=[1 2 3 4 5]; d= [0 ...

대략 8년 전 | 답변 수: 1 | 0

1

답변

질문


how to calculate the indices's distance of a vector using the data of a matrix?
something like this: % Distance Matrix: d=[0 10 20 30 40; 10 0 50 60 70; 20 50 0 80 90; 30 ...

대략 8년 전 | 답변 수: 1 | 0

1

답변

질문


How to change the elements's position of a vector by N consecutive times?
I want a loop that executes at one time only several combinations. x = [1 2 3 4 5]; xp = randperm(numel(x), 2); x(xp) ...

대략 8년 전 | 답변 수: 1 | 0

1

답변