![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/956433_1522076870439_DEF.jpg)
Alexander
Followers: 0 Following: 0
Estadística
CLASIFICACIÓN
19.361
of 297.016
REPUTACIÓN
2
CONTRIBUCIONES
1 Pregunta
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
100.0%
VOTOS RECIBIDOS
2
CLASIFICACIÓN
1.861 of 20.419
REPUTACIÓN
981
EVALUACIÓN MEDIA
4.80
CONTRIBUCIONES
9 Archivos
DESCARGAS
28
ALL TIME DESCARGAS
8993
CLASIFICACIÓN
38.804
of 157.725
CONTRIBUCIONES
0 Problemas
9 Soluciones
PUNTUACIÓN
100
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
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...
más de 3 años hace | 2 respuestas | 2
2
respuestasEnviada
Sparse Grid Interpolation
Employs Smolyak styled grids for sparse interpolation which helps with the curse of dimensionality.
más de 7 años hace | 2 descargas |
Enviada
KernelCondDensity
Multidimensional kernel density estimation with optimal and asymptotically optimal bandwidth choices
alrededor de 9 años hace | 1 descarga |
Enviada
piecewise cubic spline interpolation
Obtains a piecewise cubic spline from a function, and a function to obtain derivatives is included.
alrededor de 9 años hace | 3 descargas |
Enviada
Nonlinear Threshold Tests
Implements a Wald-like test for a nonlinear threshold model.
alrededor de 9 años hace | 1 descarga |
Enviada
Levenberg-Marquardt toolbox
Levenberg-Marquardt algorithm with Broyden updates, box constraints and argument passing.
más de 9 años hace | 7 descargas |
Enviada
Monte-Carlo integration
MC integration of n-dimensional integral with stratified and antithetic sampling
más de 9 años hace | 8 descargas |
Enviada
Contractions - algorithm and example for nested fixed points
Contractions applies the iterative scheme to a fixed-point problem. Plus, there are some examples.
más de 9 años hace | 2 descargas |
Enviada
Jacobian toolbox
Includes three routines that yield Jacobian estimates.
más de 9 años hace | 3 descargas |
Enviada
integral2_adapt(f,varargin)
This function integrates over 2 dimensional domain with possibly infinite bounds.
más de 9 años hace | 1 descarga |
Resuelto
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...
más de 9 años hace
Resuelto
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
más de 9 años hace
Resuelto
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.
más de 9 años hace
Resuelto
Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...
más de 9 años hace
Resuelto
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]
más de 9 años hace
Resuelto
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...
más de 9 años hace
Resuelto
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...
más de 9 años hace
Resuelto
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...
más de 9 años hace