Statistics
0 Problems
87 Solutions
RANK
N/A
of 300,908
REPUTATION
N/A
CONTRIBUTIONS
0 Questions
0 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 21,110
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Discussions
AVERAGE NO. OF LIKES
Feeds
Solved
Matlab Basics II - Count rows in a matrix
Write a function that returns that number of rows in a vector or matrix x example: x = [1; 2; 3] output = 3
3 years ago
Solved
Create a Standard Size Vector
Given an input x, create a row vector y from 1 to x with 5 elements.
3 years ago
Solved
Cumulative product of a vector
Cumulative product of a vector example x=[1 2 5 10], then answer must be [ 1 2 10 100] *If you like this prob...
3 years ago
Solved
Matrix to column conversion
Given a matrix of any size, convert it into a column vector. e.g A=[10 20 30; 40 50 60] then, B = [10; 40; ...
3 years ago
Solved
Matlab Basics - Convert a row vector to a column vector
Write a script to convert a row (e.g. x = [1 2 3]) to a column (e.g. y = [1;2;3]), your script should be able to do this for any...
3 years ago
Solved
Add two numbers
Calculate the sum of two numbers. Example input = [2 3] output = 5
3 years ago
Solved
Convert yards to feet
The goal of this script is to convert a value given in yards to feet.
3 years ago
Solved
Vector Multiplication
Vector Multiplication of three matrix as shown in test cases.
3 years ago
Solved
Square the input
Given a scalar or vector x, return the square of each element. Example x = [7 2] answer = [49 4]
3 years ago
Solved
Matlab Basics - Absolute Value
Write a script that returns the absolute value of the elements in x e.g. x = [-1 -2 -3 -4] --> y = [1 2 3 4]
3 years ago
Solved
multiply by three
Given the variable x as your input, multiply it by 3 and put the result equal to y. Examples: Input x = 2 Output y is ...
3 years ago
Solved
Determine the square root
Determine the square root of the value the user has entered, n.
3 years ago
Solved
Divide by 4
Given the variable x as your input, divide it by four and put the result in y.
3 years ago

