Displaying 3 results from an estimated 3 matches for "graident".
Did you mean:
gradient
2002 Jul 11
1
nls() singular graident matrix error
R-helpers;
I used Proc Model in SAS to fit the following model to data:
proc model data = dbsmv;
a = a1*F**2;
b = b1*F + b2*T + b3*F*T;
tph2 = tph1 *((1 - exp(-a*age2)) / (1 -
exp(-a*age)))**-b;
fit tph2;
and yielded the following estimated parameters after iterations:
a1 = -0.15943, a2 = -1.8177, b1 = -0.01911, b2
2007 Dec 03
0
12 commits - libswfdec/Makefile.am libswfdec/swfdec_as_strings.c libswfdec/swfdec_as_types.c libswfdec/swfdec_as_types.h libswfdec/swfdec_gradient_pattern.c libswfdec/swfdec_gradient_pattern.h libswfdec/swfdec_movie_as_drawing.c libswfdec/swfdec_pattern.c
...swfdec_bits_get_matrix (bits, &pattern->start_transform, NULL);
swfdec_bits_get_matrix (bits, &pattern->end_transform, NULL);
commit f98b8cd67045b92bd7ee79aa12d99a7b8c8669cf
Author: Benjamin Otte <otte at gnome.org>
Date: Sun Dec 2 15:17:58 2007 +0100
split out graident pattern code into its own file
This is to ease implementation of beginGradientFill
diff --git a/libswfdec/Makefile.am b/libswfdec/Makefile.am
index 6c42eb0..aad0e05 100644
--- a/libswfdec/Makefile.am
+++ b/libswfdec/Makefile.am
@@ -89,6 +89,7 @@ libswfdec_ at SWFDEC_MAJORMINOR@_la_SOURCES...
2007 Dec 18
2
Changes to 'refs/tags/0.5.5'
...mouse cursor
don't trigger g_warnings for empty files
empty movieclips have 1 frame, not 0
add test for frames and bytes properties of empty movies
initialize the movie before running the constructor (fixes #13447)
add testcase for just-fixed crash
split out graident pattern code into its own file
add swfdec_gradient_pattern_new()
add test for empty gradients
gradients (like images) pad by default
empty gradients are solid black
add a test that ensures non-increasing gradient ratios work
ratios must be increasing - if they...