Community Profile

photo

vinicius lanziotti


Aktiv seit 2017

Followers: 0   Following: 0

Statistiken

  • Thankful Level 3

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
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:

fast 5 Jahre vor | 0

Frage


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

fast 5 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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

fast 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

fast 5 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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

fast 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

fast 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

fast 5 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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

fast 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

fast 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

fast 6 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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]; ...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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); ...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort