Displaying 5 results from an estimated 5 matches for "twosid".
Did you mean:
twosie
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, al...
2009 Sep 12
0
[PATCH 11/13] nv50: add support for light-twoside
...sample
* - point_sprite / sprite_coord_mode
@@ -276,6 +275,9 @@ nv50_rasterizer_state_create(struct pipe_context *pipe,
so_method(so, tesla, 0x1684, 1);
so_data (so, cso->flatshade_first ? 0 : 1);
+ so_method(so, tesla, NV50TCL_VERTEX_TWO_SIDE_ENABLE, 1);
+ so_data (so, cso->light_twoside);
+
so_method(so, tesla, NV50TCL_LINE_WIDTH, 1);
so_data (so, fui(cso->line_width));
so_method(so, tesla, NV50TCL_LINE_SMOOTH_ENABLE, 1);
--
1.6.3.3
--------------010208090904000401070505
Content-Type: text/plain;
name="0012-nv50-add-support-for-point-size-per-vertex.patch"...
2005 Oct 31
2
Sweave (R?) font encoding problems
...T.utf-8;LC_MESSAGES=pt_PT.utf-8;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C"
R> localeToCharset()
[1] "ISO8859-1"
Here is a small example trying to replicate my problems:
File:exp.Rnw
================================
\documentclass[10pt,twoside]{article}
\usepackage[dvips]{graphicx}
\usepackage[portuges]{babel}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\begin{document}
\section{Introdu????o}
Isto ?? uma experi??ncia.
\begin{figure}[b]
\centering
<<echo=false,fig=true,width=10,height=10>>=
barras(1)
@
\caption...
2008 Mar 07
0
[PATCH 3/3] doc - Remove unused/obsolete LaTeX features
...eatures 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 Mar 07 11:46:48 2008 +0100
+++ b/docs/src/interface.tex Fri Mar 07 11:51:18 2008 +0100
@@ -1,6 +1,6 @@
-\documentclass[11pt,twoside,final,openright]{report}
-\usepackage{a4,graphicx,html,setspace,times}
-\usepackage{comment,parskip}
+\documentclass[11pt,twoside,final,openright,a4paper]{report}
+\usepackage{graphicx,html,setspace,times}
+\usepackage{parskip}
\setstretch{1.15}
% LIBRARY FUNCTIONS
--
Killing is stupid; usele...
2009 Sep 12
0
[PATCH 10/13] nv50: proper linkage between VP and FP
...+ assert(!(p->cfg.regs[1] & 0x0000ff00));
+ p->cfg.regs[1] |= p->cfg.regs[1] << 16;
+ }
- for (; i < pc->result_nr * 4; i++)
- pc->result[i].rhw = rid++;
- if (pc->p->info.writes_z)
- pc->result[2].rhw = rid;
+ /* mark color semantic for light-twoside */
+ for (i = 0; i < pc->attr_nr; i++) {
+ ubyte si, sn;
+
+ n = p->cfg.io[i].tgsi_id - tgsi_off;
+ sn = p->info.input_semantic_name[n];
+ si = p->info.input_semantic_index[n];
+
+ if (sn == TGSI_SEMANTIC_COLOR) {
+ p->cfg.two_side[si] = p->cfg.io[i];
+ p->...