photo

blaat


Technische Universiteit Delft

Actif depuis 2012

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

0 Questions
9 Réponses

Cody

0 Problèmes
186 Solutions

RANG
2 835
of 301 513

RÉPUTATION
22

CONTRIBUTIONS
0 Questions
9 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
4

RANG
 of 21 312

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
1 254
of 175 013

CONTRIBUTIONS
0 Problèmes
186 Solutions

SCORE
2 020

NOMBRE DE BADGES
5

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Cody Challenge Master
  • Knowledgeable Level 2
  • First Answer
  • Commenter
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
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...

plus de 10 ans il y a | 0

Réponse apportée
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...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
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,...

plus de 10 ans il y a | 2

Réponse apportée
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...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 10 ans il y a | 0

Réponse apportée
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...

plus de 10 ans il y a | 0

Réponse apportée
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, ...

plus de 10 ans il y a | 0

Réponse apportée
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...

plus de 10 ans il y a | 0

Réponse apportée
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...

plus de 10 ans il y a | 2

| A accepté