photo

Adriano Filippo Inno


Last seen: fast 4 Jahre vor Aktiv seit 2017

Followers: 0   Following: 0

Statistik

MATLAB Answers

4 Fragen
4 Antworten

RANG
5.179
of 300.763

REPUTATION
10

BEITRÄGE
4 Fragen
4 Antworten

ANTWORTZUSTIMMUNG
50.0%

ERHALTENE STIMMEN
1

RANG
 of 21.082

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 170.900

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Thankful Level 2
  • Knowledgeable Level 1
  • First Answer
  • Thankful Level 1

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
nxn matrix as an input argument in function
I'm a bit confused by your question. Do you need to solve a linear system with the LU method? If yes, this function will work:...

etwa 5 Jahre vor | 0

Beantwortet
ODE45 how can I format this system of equations?
Assuming your parameters are constants, create the dynamics function as follows: function dY = DinFun(~,Y,parameters) % cons...

mehr als 6 Jahre vor | 1

Frage


best way to evaluate a 2d function composed by a summation of functions
I need to plot this function: where c is a vector of constants, and each function is a polynomial expasion of the 4+i or 4+j...

mehr als 6 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
How to animate different plots at the same time using subplot, addpoints and animatedline?
If you don't want to plot a moving marker: t = 0:pi/20:10*pi; y1 = sin(t); y2 = sin(t+pi/2); subplot(1,2,1) curve1 = anim...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Finding nearest values in two matrices
Hi John, the following do what you asked using min: a = A(:,1); b = B(:,1); Nb = length(b); A_new = zeros(Nb,3); fo...

mehr als 6 Jahre vor | 0

| akzeptiert

Frage


How to avoid evalin?
I have a .mat file that contains a large set of vectors. Let's say var1, var2,....varN I need to use these vectors in a for loo...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


ODE, how to retrive variables computed in the previous step
I need to solve a nonlinear system inside the ODE at each time step in order to construct the current state derivatives. Since...

etwa 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How can I overwrite a variable saved in a script that I have to loop with a different value?
Try to make that simple: a = [10 20 30 40]; for i = 1:4 run('blabla.m') % but inside the script: a = 18 en...

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort