photo

Egon Geerardyn


Vrije Universiteit Brussel

自 2011 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
MATLAB Answers

0 个提问
6 个回答

Cody

0 个问题
10 个答案

排名
2,172
of 297,503

声誉
30

贡献数
0 个提问
6 个回答

回答接受率
0.00%

收到投票数
9

排名
 of 20,449

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
38,824
of 159,017

贡献数
0 个问题
10 个答案

评分
100

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

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

查看徽章

Feeds

排序方式:

已回答
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 前 | 1

| 已接受

已回答
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 前 | 0

已回答
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 前 | 0

| 已接受

已回答
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 前 | 1

已回答
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 前 | 2

已回答
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 前 | 5

| 已接受