Community Profile

photo

PRAKASH ANAND


Active since 2019

Followers: 0   Following: 0

Statistics

All
  • Solver
  • First Answer

View badges

Feeds

View by

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

4 years ago

Answered
how to replace elements in top third, middle third, and bottom third of matix
% That's my trio code. %From India. function T=trio(n,m) x=ones(n,m); y=2*x; z=3*x; T=[x;y;z]; end

4 years ago | 9