How do I write the code for a nonlinear system?

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
Oleg Komarov 2011년 2월 12일
More details about the nonlinear system?
Carmen
Carmen 2011년 2월 12일
using a polynomial?

댓글을 달려면 로그인하십시오.

 채택된 답변

Oleg Komarov
Oleg Komarov 2011년 2월 12일

0 개 추천

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

댓글 수: 1

Carmen
Carmen 2011년 2월 19일
thank you, how do I plot the nonlinearity with the modulated signal?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Systems of Nonlinear Equations에 대해 자세히 알아보기

질문:

2011년 2월 12일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by