Guilherme Coco Beltramini
University of Campinas (Unicamp)
Followers: 0 Following: 0
Professional Interests: neuroscience, multimodal neuroimaging
Statistics
RANK
3.852
of 295.448
REPUTATION
14
CONTRIBUTIONS
0 Questions
4 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
3
RANK
850 of 20.227
REPUTATION
2.174
AVERAGE RATING
4.20
CONTRIBUTIONS
20 Files
DOWNLOADS
59
ALL TIME DOWNLOADS
20591
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
How can I store a matrix within another matrix?
You could try something like: reshape(dat, [3,5,21,3])
meer dan 10 jaar ago | 0
Help with the interpolate function
The function you want is interp1 (with "1" in the end).
meer dan 10 jaar ago | 1
I was trying to reconstruct an image using block matching algorithm. When i tried to do so, i have got an reconstructed matrix with non zero elements. But when i tried to plot it using imshow, it appears to be a blank (ful black) image.Kindly help me
Try this: imshow(fruca, [])
meer dan 10 jaar ago | 1
| accepted
select the row that contains the minimum of a column
Use an auxiliary variable: tmp = results(:,6); tmp(tmp==0) = NaN; [minVal rowInd]=min(tmp)
meer dan 10 jaar ago | 1
| accepted