ListPlot and List problem
- To: mathgroup@smc.vnet.net
- Subject: [mg10814] ListPlot and List problem
- From: lafreund@cip.e-technik.uni-erlangen.de (Lars Freund)
- Date: Tue, 10 Feb 1998 21:01:30 -0500
- Organization: Universitaet Erlangen-Nuernberg
Hi, I want to plot data that is stored in a file having in the format: <frequence> <phase> <amplification> and want to plot the BODE-Diagram. So I did: myData = ReadList["filename",{Number, Number, Number}]; and now want a plot from <phase> over <frequence> and <amplification> over <frequence>I tried things like ListPlot[Transpose[testData][[3]],PlotJoined->True] but I always got the wrong list-format. I need {freqence1,phase1},{freqence2, phase2}... and I always get things like {phase1, phase2, phase3} or so. Can anybody help me a bit? Thanks, Lars
- Follow-Ups:
- Re: ListPlot and List problem
- From: seanross@worldnet.att.net
- Re: ListPlot and List problem