cyril
MathWorks MOOC Program
Followers: 0 Following: 0
Estadística
CLASIFICACIÓN
8.017
of 295.569
REPUTACIÓN
6
CONTRIBUCIONES
5 Preguntas
1 Respuesta
ACEPTACIÓN DE RESPUESTAS
80.0%
VOTOS RECIBIDOS
3
CLASIFICACIÓN
of 20.247
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 154.105
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
How can I get elegantly an upper triangle random matrix (0 elsewhere)?
I have seen the triu and tril functions, but I can't use them to set to 0: A = rand(4); tril(A)=0; % won't work any i...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
Simple calculations giving high imprecisions
I'm doing the following simple code, that aims to find a point position knowing distances in 2D but the outputs is far from t...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
gaussian kernel smoothing, how to optimize parameter sigma?
Hi, my question is how to find an optimal standard deviation for the gaussian kernel filter smoothing? too large, we are lo...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
Does matlab have matrix broadasting
This x=[1:3]'; x.^(1:5) would work on Octave thanks to <https://www.gnu.org/software/octave/doc/interpreter/Broadcastin...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
A logical indexing for row-wise max
I'm wondering if there is anything simpler than: x = [2 3;3 1] [a,b]=max(x, [], 2); % now return the matrix containin...
más de 10 años hace | 1 respuesta | 0
1
respuestaDefining function handles in MATLAB
> f = @(x) 2*x^3+7*x^2+x; > f(0) 0 surprising no one mentioned anonymous functions...
más de 10 años hace | 3