![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/4321240.jpg)
Guilherme Coco Beltramini
University of Campinas (Unicamp)
Followers: 0 Following: 0
Professional Interests: neuroscience, multimodal neuroimaging
Statistics
RANK
3 920
of 297 016
REPUTATION
14
CONTRIBUTIONS
0 Questions
4 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
3
RANK
848 of 20 419
REPUTATION
2 181
AVERAGE RATING
4.20
CONTRIBUTIONS
20 Files
DOWNLOADS
45
ALL TIME DOWNLOADS
20664
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])
mer än 10 år ago | 0
Help with the interpolate function
The function you want is interp1 (with "1" in the end).
mer än 10 år 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, [])
mer än 10 år 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)
mer än 10 år ago | 1
| accepted