Estadística
0 Preguntas
9 Respuestas
0 Problemas
186 Soluciones
CLASIFICACIÓN
2.740
of 295.467
REPUTACIÓN
22
CONTRIBUCIONES
0 Preguntas
9 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
4
CLASIFICACIÓN
of 20.234
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
1.050
of 153.912
CONTRIBUCIONES
0 Problemas
186 Soluciones
PUNTUACIÓN
2.020
NÚMERO DE INSIGNIAS
5
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Construct optimisation constraints vector with anonymous function.
You can also call functions within an anonymous function, e.g., param1 = 6; param2 = 0.5; nlcon = @(x)calculateconstr...
más de 9 años hace | 0
How to remove the least significant bit of a signed int16
You could use |bitset()| to set the LSB to 0, but they will still be 16-bits in memory. For example: a = [56, 21, 33]; b...
más de 9 años hace | 0
| aceptada
Why does rgb2gray use these weights for the weighted sum?
These values come from the <http://www.itu.int/rec/R-REC-BT.601-7-201103-I/en BT.601> standard for use in colour video encoding,...
más de 9 años hace | 2
How to select and crop a particular region from the image?
If you have the Image Processing Toolbox, you can use the function <http://www.mathworks.com/help/images/ref/imrect.html |imrect...
más de 9 años hace | 0
| aceptada
HOW TO GET KEY PRESS INSTANCE
The key last pressed in the figure is given by its |CurrentCharacter| property, which can be obtain by: key = get(h_fig, 'C...
más de 9 años hace | 0
Is there any way to import back figures that you initially exported from MATLAB?
Unfortunately, your figure was converted to a rasterised image when you pasted it in Microsoft Word - this process is irreversib...
más de 9 años hace | 0
How to draw orthogonal lines ?
The line between your two points can be described by y = a (x - x1) + b, where a = (y2 - y1)/(x2 - x1) b = y1, ...
más de 9 años hace | 0
For loop with changing matrix
You could use a cell array to store the ages per |j|. For example: B = cell(1, years); for j = 1:years % A is compu...
más de 9 años hace | 0
What is the difference between double() and im2double() ?
The function double() only converts the specified array to a variable of type double, keeping the same values. The function im2d...
más de 9 años hace | 2
| aceptada