source: proiecte/PPPP/ica/work/multiplymatrix.m @ 138

Last change on this file since 138 was 138, checked in by (none), 14 years ago

PPPP - ica

File size: 356 bytes
Line 
1function m = multiplymatrix(a1, a2)
2%MULTIPLYMATRIX Multiplies two matrices
3%    This function mulitplies the two matrices passed as input. This
4%    function is used to demonstate the functionality of MATLAB Compiler.
5%    Refer to the shared library section of MATLAB Compiler for more
6%    information.
7
8% Copyright 2003 The MathWorks, Inc.
9
10m =  a1*a2;
Note: See TracBrowser for help on using the repository browser.