photo

Alexander


Last seen: 約1年 前 2015 年からアクティブ

Followers: 0   Following: 0

統計

All
  • Thankful Level 1
  • 5-Star Galaxy Level 4
  • Personal Best Downloads Level 3
  • First Review
  • First Submission
  • Solver

バッジを表示

Feeds

表示方法

質問


Can I run multiple instances (say, 2) of matlab independently on the same computer, all using parfor and (ideally) different cores?
I have many cores (say 20), but some scripts only require a fraction (say 6). Does it make sense to run multiple scripts in diff...

約3年 前 | 2 件の回答 | 1

2

回答

送信済み


Sparse Grid Interpolation
Employs Smolyak styled grids for sparse interpolation which helps with the curse of dimensionality.

約7年 前 | ダウンロード 6 件 |

送信済み


KernelCondDensity
Multidimensional kernel density estimation with optimal and asymptotically optimal bandwidth choices

8年以上 前 | ダウンロード 1 件 |

送信済み


piecewise cubic spline interpolation
Obtains a piecewise cubic spline from a function, and a function to obtain derivatives is included.

8年以上 前 | ダウンロード 3 件 |

送信済み


Nonlinear Threshold Tests
Implements a Wald-like test for a nonlinear threshold model.

8年以上 前 | ダウンロード 1 件 |

送信済み


Levenberg-Marquardt toolbox
Levenberg-Marquardt algorithm with Broyden updates, box constraints and argument passing.

9年弱 前 | ダウンロード 12 件 |

送信済み


Monte-Carlo integration
MC integration of n-dimensional integral with stratified and antithetic sampling

9年弱 前 | ダウンロード 13 件 |

送信済み


Contractions - algorithm and example for nested fixed points
Contractions applies the iterative scheme to a fixed-point problem. Plus, there are some examples.

9年弱 前 | ダウンロード 1 件 |

送信済み


Jacobian toolbox
Includes three routines that yield Jacobian estimates.

9年弱 前 | ダウンロード 10 件 |

送信済み


integral2_adapt(f,varargin)
This function integrates over 2 dimensional domain with possibly infinite bounds.

9年弱 前 | ダウンロード 3 件 |

解決済み


How to find the position of an element in a vector without using the find function
Write a function posX=findPosition(x,y) where x is a vector and y is the number that you are searching for. Examples: fin...

9年弱 前

解決済み


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

9年弱 前

解決済み


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

9年弱 前

解決済み


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

9年弱 前

解決済み


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

9年弱 前

解決済み


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

9年弱 前

解決済み


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

9年弱 前

解決済み


Add two numbers
Given a and b, return the sum a+b in c.

9年弱 前

解決済み


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

9年弱 前