find the 'M'
for an input x, return 1 at the location of the letter 'M'
9年以上 前
解決済み
Solve equation numerically
y'=y
In order to solve equation using computer, numerical analysis are needed. 1st order Euler's method is one of the metho...
9年以上 前
解決済み
Counting candies
In a classroom of |'n'| children, every even numbered child gets one big candy and every odd numbered child gets two small candi...
9年以上 前
解決済み
Replicate and Tile an Array
Replicate and tile an array.
Example
A = [1 2 3; 4 5 6; 7 8 9]
B = Epli_and_Tile(A,1,2)
B = [ 1 2 3 1...