simple plotting question

Moderators: cyao, michael_borland

Post Reply
jctobin
Posts: 1
Joined: 04 Jun 2010, 14:27

simple plotting question

Post by jctobin » 15 Jul 2010, 21:27

Hi all,
If i have two files say A.out and B.out with columns say x,y,z in both of them. I want to plot z,x where z is from the first file (A.out) and x is from the second file(B,out). What is the sddscommand to do this!
Thanks!

regards,
Charles

michael_borland
Posts: 1933
Joined: 19 May 2008, 09:33
Location: Argonne National Laboratory
Contact:

Re: simple plotting question

Post by michael_borland » 15 Jul 2010, 21:38

Charles,

There are many ways to do this, but all involve creating a new file. For example

sddsxref A.out B.out AB.out -take=* -edit=column,*,ei/B/
sddsplot -column=z,xB AB.out

A less crytic method
sddsconvert A.out -pipe=out -delete=col,x | sddsxref -pipe=in B.out AB.out -take=x
sddsplot -col=z,x AB.out

--Michael

Post Reply