The Origin Forum
File Exchange
Try Origin for Free
The Origin Forum
Home | Profile | Register | Active Topics | Members | Search | FAQ | Send File to Tech support
 All Forums
 Origin Forum for Programming
 LabTalk Forum
 Plotting !

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Anti-Spam Code:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkUpload FileInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
rrahul Posted - 05/17/2005 : 11:35:50 PM
Origin Version (Select Help-->About Origin): 7.0
Operating System: Win XP

I intend to plot both the traces ( col c and col d ) as lines but the code below plots one as a scatter. What is going wrong?


[Plot]

win -t plot plottrace G%W; //customized template
page.active=2; // activate layer 2
layer -w %1 0201 200; //Include wks data in the active layer
layer -e %1_b;
limit %1_a;
layer.x.from = 0;
layer.x.to = limit.xmax*0.1;
layer.y.from = 0;
layer.y.to = 2000;
set %1_c -cl 3;
set %1_d -cl 2;
label -s -p 75 10 G%W;


Thanks,
Rahul
1   L A T E S T    R E P L I E S    (Newest First)
greg Posted - 05/18/2005 : 1:59:29 PM
Instead of plotting the entire worksheet (layer -w) and then excluding data (layer -e), why not just include what you want where you want it and let the template set the plot styles?

...
page.active=1;
layer -i %1_C;
page.active=2;
layer -i %1_D;
...
etc.



The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000