photo

Paxorus Sahay


2016년부터 활동

Followers: 0   Following: 0

통계학

  • Knowledgeable Level 1
  • First Answer

배지 보기

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년 전 | 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년 전 | 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년 전 | 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년 전 | 0

| 수락됨

답변 있음
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년 전 | 0