Community Profile

photo

vinicius lanziotti


自 2017 起处于活动状态

统计数据

  • Thankful Level 3

查看徽章

Content Feed

排序方式:

已回答
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:

4 years 前 | 0

提问


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

4 years 前 | 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?

5 years 前 | 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...

5 years 前 | 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 ...

5 years 前 | 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...

5 years 前 | 1 个回答 | 0

1

个回答

提问


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

5 years 前 | 0 个回答 | 0

0

个回答

提问


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

5 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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]; ...

6 years 前 | 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); ...

6 years 前 | 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...

6 years 前 | 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 ...

6 years 前 | 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 ...

6 years 前 | 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) ...

6 years 前 | 1 个回答 | 0

1

个回答