Adriano Filippo Inno
Followers: 0 Following: 0
Estadística
4 Preguntas
4 Respuestas
CLASIFICACIÓN
5.007
of 295.486
REPUTACIÓN
10
CONTRIBUCIONES
4 Preguntas
4 Respuestas
ACEPTACIÓN DE RESPUESTAS
50.0%
VOTOS RECIBIDOS
1
CLASIFICACIÓN
of 20.236
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 153.912
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
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:...
alrededor de 4 años hace | 0
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...
más de 5 años hace | 1
Pregunta
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...
más de 5 años hace | 0 respuestas | 0
0
respuestasHow 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...
más de 5 años hace | 0
| aceptada
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...
más de 5 años hace | 0
| aceptada
Pregunta
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...
más de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
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...
alrededor de 6 años hace | 1 respuesta | 0
1
respuestaPregunta
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...
alrededor de 7 años hace | 1 respuesta | 0