photo

Michael Hawks


Resonant Sciences

Last seen: 2 years 前 自 2013 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
MATLAB Answers

1 个提问
7 个回答

File Exchange

2 文件

Cody

0 个问题
40 个答案

排名
4,457
of 297,527

声誉
12

贡献数
1 个提问
7 个回答

回答接受率
100.0%

收到投票数
4

排名
6,641 of 20,454

声誉
162

平均
4.50

贡献数
2 文件

下载次数
4

ALL TIME 下载次数
1353

排名
12,419
of 159,075

贡献数
0 个问题
40 个答案

评分
420

徽章数量
2

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • 5-Star Galaxy Level 2
  • First Review
  • First Submission
  • Knowledgeable Level 1
  • First Answer
  • Thankful Level 1
  • Promoter
  • Solver

查看徽章

Feeds

排序方式:

已回答
create a vector of all the odds positive integers smaller than 100 in increasing order to save it into a variable
You were close. You just need to change one digit from your command to look like this: odds = [1:2:99] The '2' in the 2nd pos...

5 years 前 | 0

已回答
How can I merge different regions in a binary image?
I think you want to first create a binary image using a threshold test. If your image is named Image, then th = 128; bin = (I...

6 years 前 | 0

已回答
How do I find the area of the image in meters using MATLAB?
I agree with gonzalo -- it's not really a Matlab question. But if you know anything about your camera you could also solve it t...

6 years 前 | 1

| 已接受

已回答
Append rows at the end of Matrix
Another method: a = [1 2 3 ; 4 5 6; 7 8 9]; b=[5 5 5]; a( end+1, : ) = b; or a( :, end+1 ) = b';

6 years 前 | 2

已回答
Shrinking image by averaging
Try this: Nrow = 12; Ncol = 15; input = rand(Nrow,Ncol); shifts = [0 0; 0 1; 1 0; 0 -1]; A = zeros(Nrow,Ncol,4...

6 years 前 | 1

已回答
how to write fitness function for PSO other optimization techniques? if we have 2 output parameter and 3 input parameter.
The best approach will depend a lot on your data. A good first step might be to look at pairs of parameters using cftool. This...

6 years 前 | 0

已回答
How to force numerator and denominator coefficients to be >0 in tfest?
Estimating transfer functions from noisy data can be tricky, but forcing values to be >= 0 is pretty easy so I'll stick to that ...

6 years 前 | 0

提问


Trouble with built-in MEX file (in Image Processing toolbox)
When I use BWMORPH (in the Image Processing toolbox) I get the error "undefined function `applylutc` for input arguments of type...

9 years 前 | 1 个回答 | 0

1

个回答