While waiting for answer, I've tried to find the solutions myself, and I think, get something.
Nonlin=@(x) x^2;
SysOrder=3
iN=1;
jN=2;
syms xs(t) [1 SysOrder]
A=[0 1 0; 0 -1 1;0 0 -2];
B=[0 ;0;1];
LinearSystem=A*xs(t).';
SubsVarStr=strcat('xs', num2str(jN),'(t)');
LinearSystem(iN)=subs(LinearSystem(iN), str2sym(SubsVarStr), Nonlin(str2sym(SubsVarStr)));
inc=[-1 0 0];
odefun=odeFunction(LinearSystem+B, xs);
[T,X]=ode45(odefun, [0 2], inc)
In my main programm this 'method' gives a calculation time about 2 seconds compared to the original 1.5 seconds(when the system is handwritten and there is no any symbolic computations) and the 50 seconds( when the system is created symbolically and then transfered to the solver), so for me it is a good result.
Maybe anyone will need this somewhen.