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 comentarios

Oleg Komarov
Oleg Komarov el 12 de Feb. de 2011
More details about the nonlinear system?
Carmen
Carmen el 12 de Feb. de 2011
using a polynomial?

Iniciar sesión para comentar.

 Respuesta aceptada

Oleg Komarov
Oleg Komarov el 12 de Feb. de 2011
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 comentario

Carmen
Carmen el 19 de Feb. de 2011
thank you, how do I plot the nonlinearity with the modulated signal?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Preguntada:

el 12 de Feb. de 2011

Community Treasure Hunt

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

Start Hunting!

Translated by