Paxorus Sahay
Followers: 0 Following: 0
Statistics
0 Questions
5 Answers
RANK
11,504
of 295,673
REPUTATION
4
CONTRIBUTIONS
0 Questions
5 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 20,262
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 154,257
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
32 and 64 bit on same computer
Without knowing the platform, this answer still seems relevant: http://www.mathworks.com/matlabcentral/answers/5407-install-b...
8 years ago | 0
How to take the X smaller values of an array ?
This sliding insertion technique might be what you're looking for. function [minima] = smallest(vec, n) minima = vec...
8 years ago | 0
solving cubic equation by genetic algorithm
The Global Optimization Toolbox might be what you're looking for. If you weren't interested in applying any constraints, your co...
8 years ago | 0
How to assign NaN in matrix by masking ?
Logical indexing is your friend! find() is a little slow because it can't predict how many matches there will be, so it can't pr...
8 years ago | 0
| accepted
How to create a 2D look-up table from vectors ?
You can use containers.Map and use a vector of doubles as the key by converting it to a vector of chars. The class below will ha...
8 years ago | 0