How do I write the code for a nonlinear system?
7 次查看(过去 30 天)
显示 更早的评论
I want to put a bitstream into a symbol mapper then through a nonlinear system. However I want to use Matlab rather than simulink.
采纳的回答
Oleg Komarov
2011-2-12
Then:
% Create function handle
f = @(x,y,bt) x^2+y^2.*bt;
% Bitstream
bt = randi([0,1],10,1);
% Evaluate at x = 2, y = 3 and bt
f(2,3,bt)
Oleg
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Systems of Nonlinear Equations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!