Statistics
RANK
5 522
of 295 569
REPUTATION
8
CONTRIBUTIONS
3 Questions
4 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
2
RANK
13 735 of 20 247
REPUTATION
18
AVERAGE RATING
0.00
CONTRIBUTIONS
1 File
DOWNLOADS
1
ALL TIME DOWNLOADS
189
RANK
of 154 105
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Submitted
hilbertCurve
Convert 2D data to 1D data and back easily by applying Hilbert curve transformation
mer än 6 år ago | 1 download |
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...
nästan 8 år ago | 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); ...
nästan 8 år ago | 0
| accepted
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...
nästan 8 år ago | 1
| accepted
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...
nästan 8 år ago | 0
Question
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...
nästan 8 år ago | 2 answers | 0
2
answersQuestion
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...
mer än 9 år ago | 2 answers | 0
2
answersQuestion
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...
mer än 9 år ago | 2 answers | 0