photo

Ian Noell

Last seen: 3 days ago Active since 2011

Followers: 0   Following: 0

Message

Statistics

All
MATLAB Answers

0 Questions
21 Answers

File Exchange

2 Files

Cody

0 Problems
5 Solutions

RANK
2,084
of 300,508

REPUTATION
32

CONTRIBUTIONS
0 Questions
21 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
4

RANK
3,217 of 21,019

REPUTATION
503

AVERAGE RATING
4.90

CONTRIBUTIONS
2 Files

DOWNLOADS
9

ALL TIME DOWNLOADS
4144

RANK
56,367
of 169,435

CONTRIBUTIONS
0 Problems
5 Solutions

SCORE
60

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Personal Best Downloads Level 1
  • Editor's Pick
  • First Review
  • 5-Star Galaxy Level 3
  • First Submission
  • Revival Level 2
  • Knowledgeable Level 2
  • First Answer
  • Solver

View badges

Feeds

View by

Solved


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

14 years ago

Solved


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

14 years ago

Solved


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

14 years ago

Solved


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

14 years ago

Solved


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

14 years ago