Estadística
13 Preguntas
3.208 Respuestas
29 Archivos
Cody0 Problemas
196 Soluciones
CLASIFICACIÓN
26
of 295.940
REPUTACIÓN
9.419
CONTRIBUCIONES
13 Preguntas
3.208 Respuestas
ACEPTACIÓN DE RESPUESTAS
30.77%
VOTOS RECIBIDOS
1.345
CLASIFICACIÓN
1.567 of 20.307
REPUTACIÓN
1.186
EVALUACIÓN MEDIA
4.80
CONTRIBUCIONES
29 Archivos
DESCARGAS
118
ALL TIME DESCARGAS
8584
CLASIFICACIÓN
764
of 154.945
CONTRIBUCIONES
0 Problemas
196 Soluciones
PUNTUACIÓN
2.578
NÚMERO DE INSIGNIAS
12
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Resuelto
Create cell array of numeric arrays
Convert the input to a cell array, but only if necessary. If the input is a numeric array, return a 1-by-1 cell array contain...
alrededor de 2 años hace
Resuelto
Low level NaN
* I have a dataset. Columns represents different variables. * A variable may start with NaN or any double type number. * If i...
alrededor de 2 años hace
Resuelto
Is the input divisible by 3?
Return true if the input is divisible by 3 and false if not.
alrededor de 2 años hace
Resuelto
Ridge regularized linear regression
Given a predictor data matrix of size , target variable vector of size and a shrinkage factor (scalar) (ridge regularization...
alrededor de 2 años hace
Resuelto
String Logic 3
Example: 'CAT' --> 'RPI' 'DOG' --> 'SDV' 'MATLAB' --> 'BPIAPQ' 'ROSY' --> 'GDHN' 'TRUST' --> 'IGJHI' 'MOSTLY' --> 'BDHI...
alrededor de 2 años hace
Resuelto
For a given linear index as input for n sized square matrix, find corresponding row and column.
If input is 1, the row and column will be 1 and 1 respectively.
alrededor de 2 años hace
Resuelto
Unique - Very Very Large Numbers
Given a vector column, with some very large numbers, create the ascending sort and unique vector. *Input:* A (column vector)...
alrededor de 2 años hace
Resuelto
Find files with extension ext in the current directory
List all files with extension 'ext' in the current directory. Return a char matrix with the name of files in rows. Return 0 if...
alrededor de 2 años hace
Resuelto
Global usage
This Challenge is to utilize Global variables. Global variables are risky as the subroutine may inadvertently and unwantingly...
alrededor de 2 años hace
Resuelto
Determina si el número es primo
Primero, antes que nada: ¿Qué es un número primo? Un número primo es cualquier número que solamente se puede dividir por 1 y ...
alrededor de 2 años hace
Resuelto
Maximum of ND-array
Find the maximum element of a N dimensional array. Example: A=[1 2 4 ; -20 4 10]; The maximum is 10.
alrededor de 2 años hace
Resuelto
Sum of Arithmetic Progression
Given the starting number, difference and the number of terms - find the sum of the arithmetic progression.
alrededor de 2 años hace
Resuelto
There are 10 types of people in the world
Those who know binary, and those who don't. The number 2015 is a palindrome in binary (11111011111 to be exact) Given a year...
alrededor de 2 años hace
Resuelto
Create initial basic feasible solution for transportation problems -Minimum Cost Method
alrededor de 2 años hace
Resuelto
Create initial basic feasible solution for transportation problems - North-West Corner Method
alrededor de 2 años hace
Resuelto
Numerical Integration
Input * |x0|, a real number greater than 0 Output * |I|, a numerical estimate of the integral x0 / I...
alrededor de 2 años hace
Resuelto
Differential equations I
Given a function handle |f| an initial condition |y0| and a final time |tf|, solve numerically the differential equation dy...
alrededor de 2 años hace
Resuelto
Monte-Carlo integration
Write a function that estimates a d-dimensional integral to at least 1% relative precision. Inputs: * d: positive integer....
alrededor de 2 años hace
Resuelto
The Birthday Phenomenon
First off, leap years are not being considered for this. In fact the year that people are born shouldn't be taken into considera...
alrededor de 2 años hace
Resuelto
Throwing Dice - Will You Be Eaten By The Dragon?
You and a dragon have agreed to let dice rolls determine whether it eats you or not. The dragon will roll a single die, of x ...
alrededor de 2 años hace
Resuelto
Chess probability
The difference in the ratings between two players serves as a predictor of the outcome of a match (the <http://en.wikipedia.org/...
alrededor de 2 años hace
Resuelto
Calculate Amount of Cake Frosting
Given two input variables r and h, which stand for the radius and height of a cake, calculate the surface area of the cake you n...
alrededor de 2 años hace
Resuelto
Solve a System of Linear Equations
Example: If a system of linear equations in x₁ and x₂ is: 2x₁ + x₂ = 2 x₁ - 4 x₂ = 3 Then the coefficient matrix (A) is: 2 ...
alrededor de 2 años hace
Resuelto
Find the maximum number of decimal places in a set of numbers
Given a vector or matrix of values, calculate the maximum number of decimal places within the input. Trailing zeros do not coun...
alrededor de 2 años hace
Resuelto
Make roundn function
Make roundn function using round. x=0.55555 y=function(x,1) y=1 y=function(x,2) y=0.6 y=function(x,3) ...
alrededor de 2 años hace
Resuelto
Rounding off numbers to n decimals
Inspired by a mistake in one of the problems I created, I created this problem where you have to round off a floating point numb...
alrededor de 2 años hace