How do I write the code for a nonlinear system?
8 ビュー (過去 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.
2 件のコメント
採用された回答
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!