noPwRon

Untitled

Dec 11th, 2018
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.12 KB | None | 0 0
  1. function A = addToArray(A, B, row, col)
  2. %this function adds a two by two to an expsiting array
  3.  
  4. A(row:row+1,col:col+1) = B;
Add Comment
Please, Sign In to add comment