wil - MATLAB Central
photo

wil


Last seen: 3 years ago Active since 2015

Followers: 0   Following: 0

Message

Research Associate in Department of Computer Science, University of Sheffield

Statistics

All
CodyMATLAB AnswersFile ExchangeFrom 03/15 to 04/25Use left and right arrows to move selectionFrom 03/15Use left and right arrows to move left selectionTo 04/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

File Exchange

2 Files

Cody

0 Problems
20 Solutions

RANK
5,749
of 297,972

REPUTATION
8

CONTRIBUTIONS
0 Questions
6 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
5,830 of 20,514

REPUTATION
205

AVERAGE RATING
5.00

CONTRIBUTIONS
2 Files

DOWNLOADS
10

ALL TIME DOWNLOADS
1701

RANK
20,367
of 159,989

CONTRIBUTIONS
0 Problems
20 Solutions

SCORE
240

NUMBER OF BADGES
3

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • First Review
  • 5-Star Galaxy Level 3
  • Personal Best Downloads Level 1
  • GitHub Submissions Level 1
  • First Submission
  • Knowledgeable Level 1
  • First Answer
  • Commenter
  • Leader
  • Solver

View badges

Feeds

View by

Answered
clustering based on area
Hi, I've looked at the code and I've worked out what you need. Before your final loop "% Loop over all blobs printing their me...

10 years ago | 0

| accepted

Answered
Help : Interpolation missing data
You also overwrite nanx in the line nanx(:,1) = CS(:,1); nanx = isnan(CS(:,2)); Should this be: nanu = isnan(CS(:...

10 years ago | 0

Answered
Function changes its behavior at each iteration of a for loop
We'll call your input parameter list 'param', you can do something like the following: for k= 1:4 switch param(k) ...

10 years ago | 0

Answered
clustering based on area
Hi, k-means is probably the simplest method of clustering, but if you simply want to sort the regions based on their area, yo...

10 years ago | 0

Answered
How to find data from different matrix accordance to a treaty
You can use find() on the first column to get the row indexes of the rows you want to plot. Say your matrices are A and B, th...

10 years ago | 0

Answered
How I can write the names of file in note bad without extension?
Use can use fprintf and fileparts functions for each line of your output: fid = fopen('target.txt','a+'); for i = 1:leng...

10 years ago | 0

| accepted