Statistica
All
RANK
2.740
of 295.467
REPUTAZIONE
22
CONTRIBUTI
0 Domande
9 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
4
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Risposto
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...
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...
oltre 9 anni fa | 0
Risposto
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...
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...
oltre 9 anni fa | 0
| accettato
Risposto
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,...
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,...
oltre 9 anni fa | 2
Risposto
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...
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...
oltre 9 anni fa | 0
| accettato
Risposto
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...
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...
oltre 9 anni fa | 0
Risposto
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...
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...
oltre 9 anni fa | 0
Risposto
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, ...
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, ...
oltre 9 anni fa | 0
Risposto
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...
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...
oltre 9 anni fa | 0
Risposto
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...
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...
oltre 9 anni fa | 2
| accettato