Guilherme Coco Beltramini
University of Campinas (Unicamp)
Followers: 0 Following: 0
Professional Interests: neuroscience, multimodal neuroimaging
Statistiques
RANG
3 857
of 295 638
RÉPUTATION
14
CONTRIBUTIONS
0 Questions
4 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
3
RANG
850 of 20 255
RÉPUTATION
2 174
CLASSEMENT MOYEN
4.20
CONTRIBUTIONS
20 Fichiers
TÉLÉCHARGEMENTS
60
ALL TIME TÉLÉCHARGEMENTS
20599
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
How can I store a matrix within another matrix?
You could try something like: reshape(dat, [3,5,21,3])
plus de 10 ans il y a | 0
Help with the interpolate function
The function you want is interp1 (with "1" in the end).
plus de 10 ans il y a | 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, [])
plus de 10 ans il y a | 1
| A accepté
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)
plus de 10 ans il y a | 1
| A accepté