i am new to the matlab can some one help me how to plot the given data in 3 d

Status
Not open for further replies.

pramod.kilu

Newbie level 4
Joined
Mar 5, 2009
Messages
6
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,320
i am new to the matlab can some one help me how to plot the given data in 3 d how can i plot the data into 3 d here is the file when i am trying to plot the data i am getting error because i have only 4000*1 double data

https://www.filedropper.com/tx1rx1100mm3plates
 

That link just goes to a log-in page for me. Are you sure it's correct?
 

Okay, the link works now. It's a .bin file with 4000 samples of data. How exactly are you wanting to plot it?

If you open matlab and type:

Code:
variable = [*paste data from bin file here*];

and then:

Code:
plot(variable)

You'll get something like this:



But you only have two dimensions; what exactly do you mean by "3d"?
 

by using surf plot we can plot 3 d image .
in the given signal(Tx1Rx_1100mm_3plates.bins) i have 3 targets i need to find the targets .
if we have 3d plot by the intensity layers we can find the 3 targets
 

Sorry, I guess I'm a little confused. What do you mean by "targets"?


The "surf" command in matlab only works if you have three defined dimensions of data. As in,

Code:
surf(Z) %where Z is a matrix.

Or,

Code:
surf(X,Y,Z)  %if x, y, and z are vectors.


Your file appears to be one large vector. Can you elaborate on how you acquired the data? Maybe if I understand that, I can better interpret your question.
 

Tx1Rx_1100mm_3plates.bins this file consists of data t

this data has the targets when a uwb radar signal hits the plates shown in the figure .now the task is to find the target from the data .
 

Status
Not open for further replies.

Similar threads

Cookies are required to use this site. You must accept them to continue using the site. Learn more…