Community Profile

photo

PRAKASH ANAND


自 2019 起处于活动状态

统计数据

All
  • Solver
  • First Answer

查看徽章

Content Feed

排序方式:

已解决


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 前

已回答
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 前 | 9