Statistics
RANK
67
of 260.058
REPUTATION
2.043
CONTRIBUTIONS
1 Question
624 Answers
ANSWER ACCEPTANCE
0.0%
VOTES RECEIVED
501
RANK
870 of 17.884
REPUTATION
1.999
AVERAGE RATING
4.60
CONTRIBUTIONS
12 Files
DOWNLOADS
74
ALL TIME DOWNLOADS
16876
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
1 Public Channel
AVERAGE RATING
70
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
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.
3 días ago
Solved
We love vectorized solutions. Problem 1 : remove the row average.
Given a 2-d matrix, remove the row average from each row. Your solution MUST be vectorized. The solution will be tested for ac...
alrededor de 2 meses ago
Solved
Musical Note Interval 1 - Diatonic Scale
Assuming a simple diatonic C scale, calculate the interval (integer) between two notes (provided as strings). By applying number...
alrededor de 2 meses ago
Solved
The Piggy Bank Problem
Given a cylindrical piggy bank with radius g and height y, return the bank's volume. [ g is first input argument.] Bonus though...
9 meses ago
How do I display my secant method iteration values in a table?
If you want to display things nicely, you can use fprintf to format things into text. If the primary concern is getting the valu...
9 meses ago | 0
| accepted
Matalb Academy - Reinforcement Learning Onramp: submission failed
There was a change in R2021a that caused an incompatibility. We have a fix ready that will go out with the next update to the tr...
más de 1 año ago | 3
Submitted
Conditionally colored line plot
Plots (2D line) graph split into two colors above and below a given threshold value
más de 2 años ago | 7 downloads |

Submitted
Simple real Fourier series approximation
Computes coefficients for the real Fourier series approximation to a data set.
más de 2 años ago | 12 downloads |

Assign a number to a letter in excel
I don't understand what you're trying to get out of the original data. If you do diff(X2) you'll get [1 -1 0 0 0...
más de 2 años ago | 0
Solved
Integer or Float?
Test an input to see whether it is an integer or a floating point number. If it is an integer return 1 for 'true'. Otherwise ret...
casi 3 años ago
Solved
Solve a System of Linear Equations
Given a constant input angle θ(theta) in radians, create the coefficient matrix(A) and constant vector(b) to solve the giv...
casi 3 años ago
Solved
Verify Law of Large Numbers
If a large number of fair N-sided dice are rolled, the average of the rolls is likely to be close to the expected value of a sin...
casi 3 años ago
Solved
Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...
casi 3 años ago
Solved
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:...
casi 3 años ago
Referencing the name "MATLAB"
The official rules for all that stuff reside in the style guide.
casi 3 años ago | 4
| accepted
Channel
CWC19 Semifinal tracker
Percentage of possible outcomes of the remaining Cricket World Cup matches that result in each team making it to the semifinals....
casi 3 años ago
Submitted
"Getting Started with MATLAB" video example files
Example MATLAB scripts for the solar panel example shown in the "Getting Started with MATLAB" video
alrededor de 3 años ago | 36 downloads |

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.
alrededor de 3 años ago
Solved
Make a random, non-repeating vector.
This is a basic MATLAB operation. It is for instructional purposes. --- If you want to get a random permutation of integer...
alrededor de 3 años ago
Solved
Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...
alrededor de 3 años ago
Solved
Number of 1s in a binary string
Find the number of 1s in the given binary string. Example. If the input string is '1100101', the output is 4. If the input stri...
alrededor de 3 años ago
Solved
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...
alrededor de 3 años ago
Solved
Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...
alrededor de 3 años ago
Solved
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....
alrededor de 3 años ago
Solved
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,...
alrededor de 3 años 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...
alrededor de 3 años ago
Solved
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...
alrededor de 3 años ago
Solved
Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...
alrededor de 3 años 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]
alrededor de 3 años ago
Solved
Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<http://upload....
alrededor de 3 años ago