Community Profile

photo

Alec


2011년부터 활동

Followers: 0   Following: 0

연락

통계

  • First Review
  • Knowledgeable Level 1
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
Sparse Block diagonal matrix
Or, if you can, call `sparse` before `blkdiag`: X = ones(30, 1000); X = num2cell(sparse(X),1); B = blkdiag(X{:});

거의 10년 전 | 6

질문


Is cholupdate not supported for sparse matrices?
I have a large sparse matrix `A` and I issue: [L,p] = chol(A); Then I try to delete a row using [L1] = cholupda...

거의 10년 전 | 답변 수: 0 | 0

0

답변

질문


New MATLAB version overrides my function with class method. Can I still call my function?
I had a function in a file harmonic.m in my matlab path with prototype: function D = harmonic(A,B,C) where, importantly, A i...

거의 10년 전 | 답변 수: 0 | 1

0

답변

답변 있음
how to write variables in a functions workspace by assignin
To use `assignin` inside a function try: feval(@()assignin('caller',['h_ann_' num2str(k)], dummy)); This temporarily cre...

10년 초과 전 | 7

| 수락됨

답변 있음
How can I create animated GIF images in MATLAB?
So it appears that `imwrite` now supports writing animated grayscale GIFs "When writing multiframe GIF images, X should be an 4-...

10년 초과 전 | 1

답변 있음
interpolate over a multi-dimensional function
It seems interpn only works with scalar functions. If you issue open interpn you can see where it parses the input it ex...

대략 13년 전 | 0