Community Profile

photo

vinicius lanziotti


Attivo dal 2017

Statistiche

  • Thankful Level 3

Visualizza badge

Content Feed

Visto da

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

oltre 4 anni fa | 0

Domanda


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

oltre 4 anni fa | 2 risposte | 0

2

risposte

Domanda


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

quasi 5 anni fa | 1 risposta | 0

1

risposta

Domanda


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

quasi 5 anni fa | 0 risposte | 0

0

risposte

Domanda


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

quasi 5 anni fa | 1 risposta | 0

1

risposta

Domanda


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

quasi 5 anni fa | 1 risposta | 0

1

risposta

Domanda


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

quasi 5 anni fa | 0 risposte | 0

0

risposte

Domanda


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

quasi 5 anni fa | 1 risposta | 0

1

risposta

Domanda


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

quasi 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

quasi 6 anni fa | 0 risposte | 0

0

risposte

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 6 anni fa | 1 risposta | 0

1

risposta