Estadística
3 Preguntas
4 Respuestas
1 Archivo
CLASIFICACIÓN
5.527
of 295.486
REPUTACIÓN
8
CONTRIBUCIONES
3 Preguntas
4 Respuestas
ACEPTACIÓN DE RESPUESTAS
100.0%
VOTOS RECIBIDOS
2
CLASIFICACIÓN
13.732 of 20.236
REPUTACIÓN
18
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
1 Archivo
DESCARGAS
1
ALL TIME DESCARGAS
189
CLASIFICACIÓN
of 153.950
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
Change matrix dimensions from 4D to 2 D : matrix manipulation
This should make the matrix you were looking for: datatemp = permute(squeeze(data(:,1,:,:)),[2 1 3]); datatemp = reshape...
casi 8 años hace | 1
unstable ode45 solution
I got it to work by limiting max step size. options = odeset('AbsTol',[1e-8 1e-8 1e-8 1e-8],'RelTol',1e-4, 'MaxStep',0.1); ...
casi 8 años hace | 0
| aceptada
How to decrease index of an vector on every time step?
I don't have all your code so I can't be sure this is the problem but: rTotalAccum(n) = rTotalAccum(n) - rTotalAccum(n)*0.0...
casi 8 años hace | 1
| aceptada
ploting a specific function.
t = linspace(0,1,10001); x = nan(size(t)); for i =1:numel(t) if t(i) <=0.2 x(i) = 5*t(i); elsei...
casi 8 años hace | 0
Pregunta
unstable ode45 solution
I am currently modeling Hodgkin-Huxley equations. I give external input to the model at specific times and see whether action po...
casi 8 años hace | 2 respuestas | 0
2
respuestasPregunta
Heat map of 2-D scatter plot data
I have a n by 2 matrix called new_data, and I want to make a heat map plotting density of scatter distribution. I want to add...
más de 9 años hace | 2 respuestas | 0
2
respuestasPregunta
How do I load ASCII dat file to MATLAB
After reading some articles in the forum, I used textscan to load my .dat file to MATLAB. Unfortunately, MATLAB only read the f...
más de 9 años hace | 2 respuestas | 0