aaissa70
Newbie level 6
- Joined
- Sep 15, 2010
- Messages
- 14
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,358
How to define a matrix of variables in matlab as function?:?:
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function B = junk (a,b,c,d)
B = [a, b ; c, d];
endfunction