
Guilherme Coco Beltramini
University of Campinas (Unicamp)
Active since 2013
Followers: 0 Following: 0
Statistics
All
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
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Answered
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])
11 years ago | 0
Answered
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).
11 years ago | 1
Answered
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, [])
11 years ago | 1
| accepted
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)
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