統計
All
ランク
of 154,433
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
送信済み
hilbertCurve
Convert 2D data to 1D data and back easily by applying Hilbert curve transformation
6年以上 前 | ダウンロード 1 件 |
回答済み
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...
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...
8年弱 前 | 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); ...
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); ...
8年弱 前 | 0
| 採用済み
回答済み
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...
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...
8年弱 前 | 1
| 採用済み
回答済み
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...
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...
8年弱 前 | 0
質問
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...
8年弱 前 | 2 件の回答 | 0
2
回答質問
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...
9年以上 前 | 2 件の回答 | 0
2
回答質問
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...
9年以上 前 | 2 件の回答 | 0