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.

difficulty in plottin 3d plot using matlab-help plz

Status
Not open for further replies.

ashokone

Member level 3
Joined
Sep 30, 2009
Messages
56
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,288
Location
banglore
Activity points
1,659
F=50e9;
C=3e8;
Lambda=C/F;
t=[6 6 6 6 6 6 6 6 6];
TRL=[0.0030 0.0030; %represent position
0.0030 0.0060;
0.0030 0.0090;
0.0060 0.0030;
0.0060 0.0060;
0.0060 0.0090;
0.0090 0.0030;
0.0090 0.0060;
0.0090 0.0090];

TRx1=TRL:),1);
TRx2=TRL:),2);
figure,stem3(TRx1,TRx2,t,'^')
hold on
xlabel('distance between transmitter in mm')
ylabel('distance between transmitter in mm')
zlabel('length of transmitter ')
legend('transmitter')

N=9;
d = 1:N;
d0=1;

Pt=1; %Transmited Power


Pr=Pt*(1./(d.^2));


Pr = 10.*log(Pr);

i have to plot Pr in three dimensional, along with the above figure which is generated.. plz help
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top