Guilherme Coco Beltramini
University of Campinas (Unicamp)
自 2013 起处于活动状态
Followers: 0 Following: 0
Professional Interests: neuroscience, multimodal neuroimaging
Feeds
已回答
How can I store a matrix within another matrix?
You could try something like: reshape(dat, [3,5,21,3])
How can I store a matrix within another matrix?
You could try something like: reshape(dat, [3,5,21,3])
10 years 前 | 0
已回答
Help with the interpolate function
The function you want is interp1 (with "1" in the end).
Help with the interpolate function
The function you want is interp1 (with "1" in the end).
10 years 前 | 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, [])
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, [])
10 years 前 | 1
| 已接受
已回答
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)
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)
10 years 前 | 1
| 已接受