解決済み


String Array Basics, Part 1: Convert Cell Array to String Array; No Missing Values
<http://www.mathworks.com/help/matlab/characters-and-strings.html String array> and cell array are two types of containers for s...

2年弱 前

解決済み


Split a string into chunks of specified length
Given a string and a vector of integers, break the string into chunks whose lengths are given by the elements of the vector. Ex...

2年弱 前

解決済み


Cell Counting: How Many Draws?
You are given a cell array containing information about a number of soccer games. Each cell contains one of the following: * ...

2年弱 前

解決済み


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

2年弱 前

解決済み


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

2年弱 前

解決済み


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

2年弱 前

解決済み


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

2年弱 前

解決済み


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

2年弱 前

解決済み


Inner product of two vectors
Find the inner product of two vectors.

2年弱 前

解決済み


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

2年弱 前

解決済み


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

2年弱 前

解決済み


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

2年弱 前

解決済み


Get the area codes from a list of phone numbers
Given a string of text with phone numbers in it, return a unique'd cell array of strings that are the area codes. s = '508-647...

2年弱 前

解決済み


Total energy

2年弱 前

解決済み


Potential energy calculation

2年弱 前

解決済み


Kinetic energy calculation

2年弱 前

解決済み


Laws of motion 1

2年弱 前

解決済み


Laws of motion 2

2年弱 前

解決済み


Laws of motion 3

2年弱 前

解決済み


Laws of motion 4
Given the initial velocity 'u', final velocity 'v' and acceleration 'a', find the distance travelled.

2年弱 前

解決済み


Laws of motion 5

2年弱 前

解決済み


Laws of motion 6

2年弱 前

解決済み


Find Logic 32

2年弱 前

解決済み


Find Logic 31

2年弱 前

解決済み


Find Logic 30

2年弱 前

解決済み


Find Logic 29

2年弱 前

解決済み


Counting Money
Add the numbers given in the cell array of strings. The strings represent amounts of money using this notation: $99,999.99. E...

2年弱 前

解決済み


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

2年弱 前

解決済み


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

2年弱 前

解決済み


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

2年弱 前

さらに読み込む