Displaying 2 results from an estimated 2 matches for "pictop".
2009 Apr 24
1
the puzzle of eigenvector and eigenvalue
...so my serious problem in the R, I have three
estimators which work for the same data.
Moreover, i utilize the biplot to realize those tendency. But i find
that the the tendency of third estimator mirror the other two, the
figures are linked below
http://hopjimmy123.pixnet.net/album/photo/108526615#pictop
i believe that the tendency should have the same way with the other
estimator and the major problem is about the eigenvalue, i hope that
someone can give me some idea or provide me some solution about this
problem.
Sincerely
2009 Nov 04
1
[PATCH] nv10/exa: Spring-cleaning
...pict_format *format = nv10_rt_format;
+
+ for (; format->hw; format++) {
+ if (format->exa == pict->format)
+ return format->hw;
+ }
+
+ return 0;
+}
+
+/* Blending functions. */
#define SF(x) NV10TCL_BLEND_FUNC_SRC_##x
#define DF(x) NV10TCL_BLEND_FUNC_DST_##x
-static struct nv10_pictop {
+static struct pict_op {
int src;
int dst;
-} NV10PictOp [] = {
+
+} nv10_pict_op[] = {
{ SF(ZERO), DF(ZERO) }, /* Clear */
{ SF(ONE), DF(ZERO) }, /* Src */
{ SF(ZERO), DF(ONE) }, /* Dst */
@@ -61,131 +121,91 @@ static struct nv10_pictop {
{ SF(ONE),...