Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

please help me to solve matlab codes

Status
Not open for further replies.

nix4u

Newbie level 4
Joined
Sep 16, 2009
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
India
Activity points
1,314
dear all

please help me to solve matlab codes which are attached here the codes are of evaluation of wimax/ieee 20816 ofdm physical layer.

one attached file a.m contain whole code while other contain Tx.m, Rx.m, chenel_Sui.m which are parts of whole code.

please solve all error and make it runable.

i use matlab 2007b

thanking you in anticipation
 

Attachments

  • whole code a.rar
    6.7 KB · Views: 113
  • code parts.rar
    7.9 KB · Views: 103

I think this my post can you provide little bit help.I want Solve below differential equation by ODE 45,
%y"1+y1-y"2-4y2=0
%y'1+y'1=cos(t)+2cos(2t)
%y1(0)=0, y'1(0)=1, y2(0)=0, y'2(0)=2,
%ans y1=sin(t), y2=sin(2t)
I write this below cod in Matlab but it is Wrong. Please help me.

function dy=ssin(t,y)
dy=zeros(4,1);
dy(1)=y(3);
y(2)=y(4);
dy(1)=-dy(2)+cos(t)+2*cos(2*t);
dy(3)=-y(1)+dy(4)+4*y(2);
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top