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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 1
| 수락됨