photo

Michael Hawks


Resonant Sciences

Last seen: 거의 4년 전 2013년부터 활동

Followers: 0   Following: 0

메시지

통계

All
MATLAB Answers

1 질문
7 답변

File Exchange

2 파일

Cody

0 문제
40 답안

순위
4,159
of 301,800

평판
12

참여
1 질문
7 답변

답변 채택
100.0%

획득한 표
4

순위
6,739 of 21,411

평판
163

평균 평점
4.50

참여
2 파일

다운로드 수
3

ALL TIME 다운로드 수
1366

순위
14,562
of 176,593

참여
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...

대략 6년 전 | 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...

대략 7년 전 | 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...

대략 7년 전 | 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';

대략 7년 전 | 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...

7년 초과 전 | 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...

7년 초과 전 | 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 ...

7년 초과 전 | 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...

10년 초과 전 | 답변 수: 1 | 0

1

답변