Add simple test fixtures for Matlab.

This commit is contained in:
bilderbuchi
2011-07-03 18:44:32 +08:00
committed by Joshua Peek
parent 05dbe85a88
commit cc3692b320
2 changed files with 21 additions and 0 deletions

9
test/fixtures/matlab_function.m vendored Normal file
View File

@@ -0,0 +1,9 @@
function ret = matlab_function(A,B)
% Simple function adding two values and displaying the return value
ret = A+B;
% Display the return value
disp('Return value in function');
disp(ret);