photo

Guilherme Coco Beltramini


University of Campinas (Unicamp)

Active since 2013

Followers: 0   Following: 0

Message

Professional Interests: neuroscience, multimodal neuroimaging

Statistics

All
MATLAB Answers

0 Questions
4 Answers

File Exchange

20 Files

Cody

2 Problems
241 Solutions

RANK
3,945
of 298,594

REPUTATION
14

CONTRIBUTIONS
0 Questions
4 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
3

RANK
854 of 20,621

REPUTATION
2,189

AVERAGE RATING
4.20

CONTRIBUTIONS
20 Files

DOWNLOADS
49

ALL TIME DOWNLOADS
20749

RANK
876
of 161,780

CONTRIBUTIONS
2 Problems
241 Solutions

SCORE
2,400

NUMBER OF BADGES
5

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • 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

View badges

Feeds

View by

Answered
How can I store a matrix within another matrix?
You could try something like: reshape(dat, [3,5,21,3])

11 years ago | 0

Answered
Help with the interpolate function
The function you want is interp1 (with "1" in the end).

11 years ago | 1

Answered
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)

11 years ago | 1

| accepted