12 lines
243 B
Matlab
Executable File
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];
|