photo

Guilherme Coco Beltramini


University of Campinas (Unicamp)

自 2013 起处于活动状态

Followers: 0   Following: 0

消息

Professional Interests: neuroscience, multimodal neuroimaging

统计学

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

查看徽章

Feeds

排序方式:

已回答
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).

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)

10 years 前 | 1

| 已接受