Displaying 5 results from an estimated 5 matches for "twosided".
2009 Jul 10
2
IF STATEMENTS
Hello,
I am working on using if statements. What is the error message telling
me here and how do I correct for it?
I have tried various combinations of quotes.
Thank you.
Sincerely,
Mary A. Marion
#Find critical values
crit<-function(n,alpha,type)
{
if (type==twoSided)
{
alpha2=alpha/2
tL<-qt(alpha2,n-1)
tU<-qt(1-alpha2,n-1)
}
if (type==Lower)
{
tL<- -9999
tU<-qt(1-alpha,n-1)
}
if (type==Upper)
{
tL<-qt(alpha,n-1)
tU<- 9999
}
criticalValues<-c(tL,tU)
round(criticalValues,3)
}
crit(n=50,alpha=.05,type=twoSided)
Error in crit(n = 50, alph...
2009 Sep 12
0
[PATCH 11/13] nv50: add support for light-twoside
---
src/gallium/drivers/nv50/nv50_program.c | 19 +++++++++++++++++++
src/gallium/drivers/nv50/nv50_state.c | 4 +++-
2 files changed, 22 insertions(+), 1 deletions(-)
diff --git a/src/gallium/drivers/nv50/nv50_program.c b/src/gallium/drivers/nv50/nv50_program.c
index feb1504..39c3afc 100644
--- a/src/gallium/drivers/nv50/nv50_program.c
+++ b/src/gallium/drivers/nv50/nv50_program.c
@@
2005 Oct 31
2
Sweave (R?) font encoding problems
Dear R list,
I'm having some problems with font encodings when using R+Sweave+Latex in my
native language: Portuguese.
My environment:
Kubuntu 5.10 Linux
$> uname -a
Linux nassa 2.6.12-9-686 #1 Mon Oct 10 13:25:32 BST 2005 i686 GNU/Linux
R> R.version
_
platform i486-pc-linux-gnu
arch i486
os linux-gnu
system i486, linux-gnu
2008 Mar 07
0
[PATCH 3/3] doc - Remove unused/obsolete LaTeX features
# HG changeset patch
# User Bastian Blank <waldi@debian.org>
# Date 1204887078 -3600
# Node ID 5fb1c83d7ec89eb83c7c32eb7ee3b7a6b796478f
# Parent 968faff41008504641c5cb700c4e83c6aaa3c009
Remove deprecated and unused features from LaTeX source.
Signed-off-by: Bastian Blank <waldi@debian.org>
diff -r 968faff41008 -r 5fb1c83d7ec8 docs/src/interface.tex
--- a/docs/src/interface.tex Fri
2009 Sep 12
0
[PATCH 10/13] nv50: proper linkage between VP and FP
This moves construction of the mapping between VP outputs
and FP inputs into validation.
The map also contains slots for special outputs like clip
distance and point size, so we need to at least merge the
VP related and FP related parts on validation if we want
to support those.
Now we match every single FP input component with results
from the VP and leave those not read out of the map, or