photo

Alexander


Last seen: 2 years 前 自 2015 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
MATLAB Answers

1 个提问
0 个回答

File Exchange

9 文件

Cody

0 个问题
9 个答案

排名
19,625
of 300,857

声誉
2

贡献数
1 个提问
0 个回答

回答接受率
100.0%

收到投票数
2

排名
1,855 of 21,097

声誉
1,001

平均
4.80

贡献数
9 文件

下载次数
22

ALL TIME 下载次数
9191

排名
42,327
of 171,361

贡献数
0 个问题
9 个答案

评分
100

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • 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...

4 years 前 | 2 个回答 | 2

2

个回答

已提交


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

8 years 前 | 1 次下载 |

0.0 / 5

已提交


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

10 years 前 | 1 次下载 |

0.0 / 5

已提交


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

10 years 前 | 3 次下载 |

5.0 / 5

已提交


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

10 years 前 | 2 次下载 |

0.0 / 5

已提交


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

10 years 前 | 5 次下载 |

4.5 / 5

已提交


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

10 years 前 | 4 次下载 |

5.0 / 5

已提交


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

10 years 前 | 2 次下载 |

0.0 / 5

已提交


Jacobian toolbox
Includes three routines that yield Jacobian estimates.

10 years 前 | 3 次下载 |

4.5 / 5

已提交


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

10 years 前 | 1 次下载 |

5.0 / 5

已解决


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...

10 years 前

已解决


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

10 years 前

已解决


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.

10 years 前

已解决


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

10 years 前

已解决


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]

10 years 前

已解决


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...

10 years 前

已解决


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...

10 years 前

已解决


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

10 years 前

已解决


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...

10 years 前