Ray - MATLAB Central
photo

Ray


Last seen: 14 dagar ago Active since 2022

Followers: 0   Following: 0

Statistics

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

1 Question
1 Answer

File Exchange

1 File

Cody

4 Problems
32 Solutions

RANK
186 926
of 298 219

REPUTATION
0

CONTRIBUTIONS
1 Question
1 Answer

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
0

RANK
20 285 of 20 548

REPUTATION
0

AVERAGE RATING
0.00

CONTRIBUTIONS
1 File

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
8 321
of 160 604

CONTRIBUTIONS
4 Problems
32 Solutions

SCORE
730

NUMBER OF BADGES
8

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • First Review
  • First Submission
  • First Answer
  • Speed Demon
  • Creator
  • Curator
  • Community Group Solver
  • Solver

View badges

Feeds

View by

Submitted


Did Not Complete
This program uses Grader output and a roster to find out which students on the roster did not complete the assignment.(100%)

12 månader ago | 0 downloads |

0.0 / 5
Thumbnail

Solved


How many Christmas presents under the tree?
For many families at Christmas, each family member gives 1 present to every other family member. The main exception is that chil...

ungefär ett år ago

Solved


Find max prime number
Given integer number n. Find the max prime number (mpn) that smaller than or equal to n. Example: n = 10 --> mpn = 7

ungefär ett år ago

Problem


Count integers in randomized vector that are multiples of a given number.
The mod() function We might all remember the days when we were taught to divide and then set the remainder aside if the numbers...

mer än ett år ago | 0 | 26 solvers

Problem


The Hacker Parole Problem
The hacker parole problem 100 hackers have been imprisoned, but have been given a way to get parole. Each of the 100 prisone...

mer än ett år ago | 0 | 5 solvers

Solved


Sum of diagonal of a square matrix
If x = [1 2 4; 3 4 5; 5 6 7] then y should be the sum of the diagonals of the matrix y = 1 + 4 + 7 = 12

mer än ett år ago

Solved


Summing the last column column
Given a matrix, return the sum of the last column of the array.

mer än ett år ago

Solved


Return part of an array
Given a 5x5 array, return a 3x3 array that contains the cells that are not on the edge of the array: Given this array Return...

mer än ett år ago

Answered
Tracking completion of MATLAB Fundamentals as a course requirement
Students can share their progress with you on the course page. They use your username for the share and then the system keeps y...

mer än ett år ago | 0

Problem


Return part of an array
Given a 5x5 array, return a 3x3 array that contains the cells that are not on the edge of the array: Given this array Return...

mer än ett år ago | 1 | 33 solvers

Problem


Summing the last column column
Given a matrix, return the sum of the last column of the array.

mer än ett år ago | 0 | 36 solvers

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

mer än ett år ago

Solved


Vector creation using linspace
Create a vector y containing n uniformly spaced values between a and b, with a < b. Use linspace.

mer än ett år ago

Solved


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

mer än ett år ago

Solved


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

mer än ett år ago

Solved


Chess probability
The difference in the ratings between two players serves as a predictor of the outcome of a match (the <http://en.wikipedia.org/...

mer än ett år ago

Solved


Magic is simple (for beginners)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.

mer än ett år ago

Solved


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

mer än ett år ago

Solved


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

mer än ett år ago

Solved


Calculate Amount of Cake Frosting
Given two input variables r and h, which stand for the radius and height of a cake, calculate the surface area of the cake you n...

mer än ett år ago

Solved


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

mer än ett år ago

Solved


Return area of square
Side of square=input=a Area=output=b

mer än ett år ago

Solved


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

mer än ett år 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 ...

mer än ett år ago

Solved


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

mer än ett år ago

Solved


Create a vector
Create a vector from 0 to n by intervals of 2.

mer än ett år ago

Solved


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

mer än ett år ago

Solved


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

mer än ett år ago

Solved


Find max
Find the maximum value of a given vector or matrix.

mer än ett år ago

Solved


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

mer än ett år ago

Load more