Community Profile

photo

sjhstone


Last seen: 5 months ago Active since 2019

Followers: 0   Following: 0

Statistics

All
  • Knowledgeable Level 1
  • Revival Level 2
  • Solver
  • Thankful Level 1
  • First Answer

View badges

Feeds

View by

Solved


Convert a Cell Array into an Array
Given a square cell array: x = {'01', '56'; '234', '789'}; return a single character array: y = '0123456789'

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

3 years ago

Solved


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

3 years ago