Egon Geerardyn - MATLAB Central
photo

Egon Geerardyn


Vrije Universiteit Brussel

Active since 2011

Followers: 0   Following: 0

Message

Statistics

All
CodyMATLAB AnswersFrom 01/11 to 03/25Use left and right arrows to move selectionFrom 01/11Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 Questions
6 Answers

Cody

0 Problems
10 Solutions

RANK
2,172
of 297,560

REPUTATION
30

CONTRIBUTIONS
0 Questions
6 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
9

RANK
 of 20,456

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
38,846
of 159,148

CONTRIBUTIONS
0 Problems
10 Solutions

SCORE
100

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • First Review
  • Knowledgeable Level 2
  • First Answer
  • Solver

View badges

Feeds

View by

Answered
Nested for-loops too slow
You might want to work more on that code manually before implementing it like that. As the only thing that really matters is N, ...

14 years ago | 1

| accepted

Answered
Adaptive Filter for System Identification.
If you're trying to model a continuous time system, I'd recommend making your model for continuous time instead of discrete time...

14 years ago | 0

Answered
Image Background Removal
You can try vectorizing that code, but that will be most likely destroy any short-circuiting you have in there. Just by the top...

14 years ago | 0

| accepted

Answered
Can I install an earlier version of MATLAB on a system with a current version of MATLAB?
1) Saying your OS is 32 bit will most likely work. Most 32 bit software should work on a 64 bit OS (unless you are fiddling with...

14 years ago | 1

Answered
Grayscaled Images to RGB
If you just need red, green or blue, you can use the following code: I = im2double(imread('cameraman.tif')); %image in double...

14 years ago | 2

Answered
2nd order polynomial fitting with NaNs
Try indexing your data points to your non-NaN-points Let's just work on an example: %% just generating data x = 1:10; ...

14 years ago | 5

| accepted