Ned Gulley - MATLAB Central
photo

Ned Gulley

Last seen: 1 dag ago Active since 2011

Followers: 6   Following: 1

Message

Statistics

All
CodyBlogsMATLAB AnswersFile ExchangeThingSpeakFrom 01/11 to 03/25Use left and right arrows to move selectionFrom 01/11Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

5 Questions
24 Answers

File Exchange

8 Files

Cody

51 Problems
176 Solutions

Blogs

226 Posts

ThingSpeak

2 Public Channels

RANK
478
of 297.503

REPUTATION
164

CONTRIBUTIONS
5 Questions
24 Answers

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
72

RANK
695 of 20.449

REPUTATION
2.619

AVERAGE RATING
4.60

CONTRIBUTIONS
8 Files

DOWNLOADS
17

ALL TIME DOWNLOADS
23206

RANK
197
of 159.017

CONTRIBUTIONS
51 Problems
176 Solutions

SCORE
6.925

NUMBER OF BADGES
93

CONTRIBUTIONS
226 Posts

CONTRIBUTIONS
2 Public Channels

AVERAGE RATING
68

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • MATLAB Shorts Mini Hack Participant
  • MATLAB Flipbook Mini Hack Participant
  • 3 Month Streak
  • Thankful Level 3
  • Likeable
  • Famous
  • Explorer
  • Personal Best Downloads Level 2
  • MATLAB Mini Hack 2022 Participant
  • MATLAB Mini Hack Participant
  • Editor's Pick
  • First Review

View badges

Feeds

Solved


Reverse Boggle
Description In the classic Parker Brothers game Boggle, players find words from a 4x4 game board of letters. This exercise is t...

7 maanden ago

Solved


Balanced Ternary Numbers: Easy as |, |-, |o
This problem concerns the so-called <http://en.wikipedia.org/wiki/Balanced_ternary balanced ternary> system for representing num...

ongeveer een jaar ago

Solved


Sum of series II
What is the sum of the following sequence: Σ(2k-1)^2 for k=1...n for different n?

ongeveer een jaar ago

Solved


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

meer dan een jaar ago

Solved


Sum of series V
What is the sum of the following sequence: Σk(k+1) for k=1...n for different n?

meer dan een jaar ago

Solved


Remove the air bubbles
Given a matrix a, return a matrix b in which all the zeros have "bubbled" to the top. That is, any zeros in a given column shoul...

ongeveer 2 jaar ago

Solved


Reverse Run-Length Encoder
Given a "counting sequence" vector x, construct the original sequence y. A counting sequence is formed by "counting" the entrie...

ongeveer 2 jaar ago

Solved


Fibonacci Decomposition
Every positive integer has a unique decomposition into nonconsecutive Fibonacci numbers f1+f2+ ... Given a positive integer n, r...

ongeveer 2 jaar ago

Solved


Pi Estimate 1
Estimate Pi as described in the following link: <http://www.people.virginia.edu/~teh1m/cody/Pi_estimation1.pdf>

ongeveer 2 jaar ago

Solved


Next Tribonacci Number
The "Tribonacci" sequence is an extension of the idea of the Fibonacci sequence: That is, each new term is the sum of the thr...

ongeveer 2 jaar ago

Solved


Cricket - Most Frequent Bowler-Batter Wicket Combinations
Given a table representing all wickets taken in a particular set of matches, return a table of the bowler-batter pairs that occu...

meer dan 2 jaar ago

Solved


Split Even Number Into Two Primes
Given an even whole number n (> 2), return a 2-element vector of primes, p, such that p(1) + p(2) = n. Fun note: technically it...

meer dan 2 jaar ago

Solved


Extract the Acrostic Message
An acrostic cipher is a way of embedding one message within another by taking the first (or last) word of each line. Given a str...

meer dan 2 jaar ago

Solved


Boustrophedon
Given a vector v and a positive integer n, return an m-by-n matrix containing the elements of v row-wise, alternating left-to-ri...

meer dan 2 jaar ago

Solved


Generate Tribonacci Sequence
The "Tribonacci" sequence is an extension of the idea of the Fibonacci sequence: That is, each new term is the sum of the thr...

meer dan 2 jaar ago

Solved


Where the Four Corners Am I?
The "Four Corners" region of the US is where Colorado, Utah, Arizona, and New Mexico all meet - the only place where four states...

meer dan 2 jaar ago

Solved


Generate Pascal's Triangle Matrix
Pascal's triangle is an arrangement of numbers where each value is the sum of the values adjacent to it in the previous row: ...

meer dan 2 jaar ago

Solved


Jack O'Lantern
If visualized correctly, the data contained in the matrix A will look like a jack-o'-lantern. Create a function that will visu...

meer dan 2 jaar ago

Solved


Plotting Practice
Plot cos(x) vs x as shown in the figure below. Include the appropriate title, x-label, and y-label. Note, it is case sensitive. ...

meer dan 2 jaar ago

Solved


Make a Plot with Functions
Make a plot and test

meer dan 2 jaar ago

Solved


Calculating Student Grades
The matrix grades contains raw grades for 7 students who took your course. Each row represents a different student. The first 7 ...

meer dan 2 jaar ago

Solved


Matrix Quadrants
Write a function that takes N as the input, and outputs a matrix whose upper-left (NxN) quadrant contains all ones, the lower-ri...

meer dan 2 jaar ago

Solved


Find the minimum of the column-maximums of a matrix
Given a matrix A, find the maximum value of each column, then return the smallest of those maximum values (ie return the minimum...

meer dan 2 jaar ago

Solved


Find Closest Constant
Given a number x, return the value that is closest to x from this list of constants: 0, 1, , e, , (also known as ). For exampl...

meer dan 2 jaar ago

Solved


Create an arrow matrix
An arrow matrix is a square matrix that contains ones on the diagonal, the last column, and last row. ...

meer dan 2 jaar ago

Solved


Find a Pythagorean triple
Given four different positive numbers, a, b, c and d, provided in increasing order: a < b < c < d, find if any three of them com...

meer dan 2 jaar ago

Solved


Given a matrix, swap the 2nd & 3rd columns
If a = [1 2 3 4; 1 2 3 4; 1 2 3 4; 1 2 3 4]; then the result is ans = 1 3 2 4 1 3 2...

meer dan 2 jaar ago

Solved


Find the complement of a number in binary
Input x is a decimal number and output y is the complement of binary representation of x. For example, x = 10 has the binary ...

ongeveer 3 jaar ago

Solved


Replace Nonzero Numbers with 1
Given the matrix x, return the matrix y with non zero elements replaced with 1. Example: Input x = [ 1 2 0 0 0 ...

ongeveer 3 jaar ago

Solved


frame of the matrix
Given the matrix M, return M without the external frame.

ongeveer 3 jaar ago

Load more