photo

blaat


Technische Universiteit Delft

Active since 2012

Followers: 0   Following: 0

Message

Statistics

All
MATLAB Answers

0 Questions
9 Answers

Cody

0 Problems
186 Solutions

RANK
2,822
of 300,508

REPUTATION
22

CONTRIBUTIONS
0 Questions
9 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
4

RANK
 of 21,019

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
1,210
of 169,435

CONTRIBUTIONS
0 Problems
186 Solutions

SCORE
2,020

NUMBER OF BADGES
5

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

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

View badges

Feeds

View by

Answered
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...

10 years ago | 0

Answered
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...

10 years ago | 0

| accepted

Answered
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,...

10 years ago | 2

Answered
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...

10 years ago | 0

| accepted

Answered
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...

10 years ago | 0

Answered
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...

10 years ago | 0

Answered
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, ...

10 years ago | 0

Answered
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...

10 years ago | 0

Answered
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...

10 years ago | 2

| accepted