~ubuntu-branches/ubuntu/hardy/texmacs/hardy

« back to all changes in this revision

Viewing changes to plugins/r/r/TeXmacs/R-ex/v.R

  • Committer: Bazaar Package Importer
  • Author(s): Ralf Treinen
  • Date: 2004-04-19 20:34:00 UTC
  • Revision ID: james.westby@ubuntu.com-20040419203400-g4e34ih0315wcn8v
Tags: upstream-1.0.3-R2
ImportĀ upstreamĀ versionĀ 1.0.3-R2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
### Name: view
 
2
### Title: Insert current graphic into TeXmacs
 
3
### Aliases: v plotv pointsv linev
 
4
### Keywords: TeXmacs graphics view device plot
 
5
 
 
6
### ** Examples
 
7
 
 
8
x<-(0:600)/100;
 
9
plot(x,sin(x),type="l");
 
10
lines(x,cos(x),col=2);
 
11
legend(0,-0.5,c("sin(x)","cos(x)"),lty=1,col=c(1:2));
 
12
v();
 
13
plotv(x,sin(60/x),type="l");
 
14
 
 
15
 
 
16