photo

Will Dampier


Drexel University

2009년부터 활동

Followers: 0   Following: 0

메시지

Professional Interests: bioinformatics

통계

All
MATLAB Answers

5 질문
2 답변

File Exchange

2 파일

Cody

0 문제
21 답안

순위
4,552
of 300,331

평판
11

참여
5 질문
2 답변

답변 채택
80.0%

획득한 표
2

순위
7,666 of 20,920

평판
125

평균 평점
4.00

참여
2 파일

다운로드 수
3

ALL TIME 다운로드 수
1212

순위
23,576
of 168,124

참여
0 문제
21 답안

점수
220

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • First Review
  • First Submission
  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer
  • Solver

배지 보기

Feeds

보기 기준

질문


Creating backwards compatible p-code for teaching purposes
I am teaching some matlab classes and we have some version-ing issues ... some students use versions as old as 2008b and some of...

12년 초과 전 | 답변 수: 1 | 1

1

답변

문제를 풀었습니다


Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...

12년 초과 전

문제를 풀었습니다


Return elements unique to either input
Given two numeric inputs a and b, return a row vector that contains the numbers found in only a or only b, but not both. For ex...

12년 초과 전

문제를 풀었습니다


Duplicate each element of a vector.
for an n-dimensional vector x, the function should return another vector 2n-dimension which each element is repeated twice. Ex...

12년 초과 전

문제를 풀었습니다


Replicate elements in vectors
Replicate each element of a row vector (with NaN) a constant number of times. Examples : n=2, A=[1 2 3] -> [1 1 2 2 3 3] n=0...

12년 초과 전

문제를 풀었습니다


Matrix which contains the values of an other matrix A at the given locations.
If you have two matrices, which together give xc and yc coordinates into another matrix, eg : xc = [1 1 1; 2 2 1]; ...

12년 초과 전

문제를 풀었습니다


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,...

12년 초과 전

문제를 풀었습니다


Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to <http://www.mathworks....

12년 초과 전

문제를 풀었습니다


Return the first and last character of a string
Return the first and last character of a string, concatenated together. If there is only one character in the string, the functi...

12년 초과 전

문제를 풀었습니다


Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...

12년 초과 전

문제를 풀었습니다


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

12년 초과 전

문제를 풀었습니다


Return the largest number that is adjacent to a zero
This example comes from Steve Eddins' blog: <http://blogs.mathworks.com/steve/2009/05/27/learning-lessons-from-a-one-liner/ Lear...

12년 초과 전

문제를 풀었습니다


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

12년 초과 전

문제를 풀었습니다


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

12년 초과 전

문제를 풀었습니다


Add two numbers
Given a and b, return the sum a+b in c.

12년 초과 전

문제를 풀었습니다


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

12년 초과 전

문제를 풀었습니다


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

12년 초과 전

문제를 풀었습니다


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

12년 초과 전

문제를 풀었습니다


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:...

12년 초과 전

문제를 풀었습니다


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

13년 초과 전

문제를 풀었습니다


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

13년 초과 전

문제를 풀었습니다


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

13년 초과 전

질문


Lower bound on p-value returned by corr
I'm using corr to calculate the p-value for the correlation between two datasets. It keeps returning a p-value of Zero. Do...

대략 14년 전 | 답변 수: 1 | 0

1

답변

질문


Creating a backwards compatable p-code file
I am teaching some matlab classes and we have some version-ing issues ... some students use versions as old as 2008b and some of...

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

1

답변

질문


Combining specific regions of multiple images in a stripe pattern.
[EDIT: 20110526 15:43 CDT - reformat - WDR] I'm trying to combine images into a "stripe" pattern. Below are two example images....

14년 초과 전 | 답변 수: 0 | 0

0

답변

답변 있음
Using MATLAB with Chessboard arrangements problem
Now, 15 hours after the deadline I've finally gotten all submissions I'll post my solution based on Andrew's solution. Its much ...

14년 초과 전 | 0

답변 있음
How to import numerous excel files into MATLAB?
You won't be able to load them all at once but you could easily use a for-loop to process them one at a time. Something like thi...

14년 초과 전 | 1

| 수락됨

질문


Is there a way to skip "pause" statements
I'm grading hundreds of student assignments using a semi-automated method. However, a large portion of the students have includ...

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

1

답변

제출됨


SeqLogoFig
This is a wrapper around the bioinformatics SeqLogo function that creates a REAL matlab figure.

15년 초과 전 | 다운로드 수: 2 |

4.0 / 5
Thumbnail

제출됨


RefineAlignments
A tool which can refine a set of multiple alignments to reduce the global alignment score.

대략 16년 전 | 다운로드 수: 1 |

0.0 / 5