photo

Guilherme Coco Beltramini


University of Campinas (Unicamp)

Actif depuis 2013

Followers: 0   Following: 0

Message

Professional Interests: neuroscience, multimodal neuroimaging

Statistiques

All
  • Personal Best Downloads Level 3
  • First Review
  • 5-Star Galaxy Level 4
  • First Submission
  • Knowledgeable Level 1
  • First Answer
  • Commenter
  • CUP Challenge Master
  • Creator
  • Promoter
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
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

Réponse apportée
Help with the interpolate function
The function you want is interp1 (with "1" in the end).

plus de 10 ans il y a | 1

Réponse apportée
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é