Michael Scholz 0fe686245c CE update
2013-02-20 16:20:56 +01:00

12 lines
243 B
Matlab
Executable File

function f = myfuncA(in1)
%MYFUNCA
% F = MYFUNCA(IN1)
% This function was generated by the Symbolic Math Toolbox version 5.8.
% 15-Jan-2013 23:42:28
x1 = in1(1,:);
x2 = in1(2,:);
x3 = in1(3,:);
f = [x1.^2;x2+x3;x3.*3.0];