photo

wil


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

Followers: 0   Following: 0

메시지

Research Associate in Department of Computer Science, University of Sheffield

통계

All
MATLAB Answers

0 질문
6 답변

File Exchange

2 파일

Cody

0 문제
20 답안

순위
6,009
of 300,853

평판
8

참여
0 질문
6 답변

답변 채택
0.00%

획득한 표
0

순위
5,788 of 21,094

평판
213

평균 평점
5.00

참여
2 파일

다운로드 수
6

ALL TIME 다운로드 수
1782

순위
22,121
of 171,319

참여
0 문제
20 답안

점수
240

배지 수
3

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • 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

배지 보기

Feeds

보기 기준

제출됨


wilocw/surf_map
Live script and demo for visualising 3-column CSV as surface

거의 9년 전 | 다운로드 수: 1 |

0.0 / 5
Thumbnail

문제를 풀었습니다


Divisible by 4
Pursuant to the <http://www.mathworks.com/matlabcentral/cody/problems/42404-divisible-by-2 first problem> in this series, this o...

거의 9년 전

문제를 풀었습니다


Divisible by 5
Pursuant to the <http://www.mathworks.com/matlabcentral/cody/problems/42404-divisible-by-2 first problem> in this series, this o...

거의 9년 전

문제를 풀었습니다


Divisible by 3
Pursuant to the <http://www.mathworks.com/matlabcentral/cody/problems/42404-divisible-by-2 first problem> in this series, this o...

거의 9년 전

문제를 풀었습니다


Divisible by 2
This is the first problem in a set of "divisible by x" problems. You will be provided a number as a string and the function you ...

거의 9년 전

문제를 풀었습니다


Find the largest value in the 3D matrix
Given a 3D matrix A, find the largest value. Example >> A = 1:9; >> A = reshape(A,[3 1 3]); >> islargest(A) a...

거의 9년 전

문제를 풀었습니다


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

거의 9년 전

문제를 풀었습니다


Target sorting
Sort the given list of numbers |a| according to how far away each element is from the target value |t|. The result should return...

거의 9년 전

문제를 풀었습니다


Which values occur exactly three times?
Return a list of all values (sorted smallest to largest) that appear exactly three times in the input vector x. So if x = [1 2...

거의 9년 전

문제를 풀었습니다


Switch matrix to a column vector
for e.g. x = [1 2 3 4] y = 1 3 2 4

거의 9년 전

문제를 풀었습니다


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

거의 9년 전

문제를 풀었습니다


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

거의 9년 전

문제를 풀었습니다


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

거의 9년 전

문제를 풀었습니다


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...

거의 9년 전

문제를 풀었습니다


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

거의 9년 전

문제를 풀었습니다


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

거의 9년 전

문제를 풀었습니다


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

거의 9년 전

문제를 풀었습니다


Is my wife right?
Regardless of input, output the string 'yes'.

10년 초과 전

문제를 풀었습니다


Output a vector which is table of 9
Output a vector which is table of 9

10년 초과 전

문제를 풀었습니다


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

10년 초과 전

문제를 풀었습니다


Create sequnce 1 4 9 16 25.........
Create sequnce 1 4 9 16 25......... upto entered input value using matlab scripting commands

10년 초과 전

답변 있음
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...

거의 11년 전 | 0

| 수락됨

답변 있음
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(:...

거의 11년 전 | 0

답변 있음
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) ...

거의 11년 전 | 0

답변 있음
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...

거의 11년 전 | 0

답변 있음
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...

거의 11년 전 | 0

제출됨


icosphere
Generate unit geodesic sphere created by subdividing a regular icosahedron

거의 11년 전 | 다운로드 수: 5 |

5.0 / 5
Thumbnail

답변 있음
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...

거의 11년 전 | 0

| 수락됨