photo

TheTaoism


University of Southern California

Active since 2012

Followers: 0   Following: 0

Message

Professional Interests: Wireless Communications, Optical Communications, Network Planning

Statistics

All
  • First Answer
  • Solver

View badges

Feeds

View by

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

12 years ago

Solved


Convert from Base 10 to base 5
Convert the input number from base 10 into base 5: for example: if a(in base 10)= 5 then a(in base 5)= 10

12 years ago

Answered
Fibonacci Sequence while loop.
How about this one? function output = FibSeq (nelements,startingPoint) output = zeros (1,nelements); output(1,1:lengt...

12 years ago | 1