search for: surf

Displaying 20 results from an estimated 665 matches for "surf".

Did you mean: sure
2007 Feb 02
0
Attempting to get FFXI working.
...ativeLevel (0x165de8)->((nil),00000008) fixme:ddraw:IDirectDrawImpl_SetCooperativeLevel (0x165de8)->(0x10028,00000080) fixme:ddraw:IDirectDrawImpl_SetCooperativeLevel (0x165de8)->(0x10028,00000113) fixme:win:WIN_CreateWindowEx Parent is HWND_MESSAGE dummy fixme:d3d:IWineD3DDeviceImpl_CreateSurface Trying to create a render target that isn't in the default pool fixme:d3d_surface:IWineD3DSurfaceImpl_UnlockRect unsupported unlocking to Rendering surface surf@0x19a1250 usage(WINED3DUSAGE_RENDERTARGET) sqpoldir: SetDirName[c:\Program Files\PlayOnline\SquareEnix\PlayOnlineViewer\] polBackTo...
2007 Aug 04
2
multiple nls - next fit even after convergence problem
...than 1000 curves I have, obviously for some of them I encounter conversion problems. I'd like for my function to keep going to the next curve and store the fact that for curve number X I had a convergence problem. This is my original function : comp.fit.2<-function(tab) { fit.log<-nls(surf.vert.tot ~ 100/(1+exp(((log(81))/a)*(sum.T.levee-b))), start=list( a=ifelse(sum(tab$surf.vert.tot>76)<1 | sum(tab$surf.vert.tot<15)<1,400,-max(tab$sum.T.levee[tab$surf.vert.tot>76],na.rm=T)+min(tab$sum.T.levee[tab$surf.vert.tot<15],na.rm=T)), b=tab$sum.T.levee[abs(tab$surf.vert.to...
2012 Jan 10
5
[PATCH 0/4] nvfx: rework render temps code and fixes
...18 +--- src/gallium/drivers/nvfx/nvfx_resource.h | 30 +----- src/gallium/drivers/nvfx/nvfx_screen.c | 6 +- src/gallium/drivers/nvfx/nvfx_state_emit.c | 94 +++++------------ src/gallium/drivers/nvfx/nvfx_state_fb.c | 155 ++++++++++----------------- src/gallium/drivers/nvfx/nvfx_surface.c | 136 +++---------------------- 8 files changed, 108 insertions(+), 337 deletions(-) -- 1.7.7.5
2018 Nov 28
0
[PATCH 5/6] drm/qxl: cover all crtcs in shadow bo.
The qxl device supports only a single active framebuffer ("primary surface" in spice terminology). In multihead configurations are handled by defining rectangles within the primary surface for each head/crtc. Userspace which uses the qxl ioctl interface (xorg qxl driver) is aware of this limitation and will setup framebuffers and crtcs accordingly. Userspace wh...
2018 Dec 12
0
[PATCH v2 14/18] drm/qxl: cover all crtcs in shadow bo.
The qxl device supports only a single active framebuffer ("primary surface" in spice terminology). In multihead configurations are handled by defining rectangles within the primary surface for each head/crtc. Userspace which uses the qxl ioctl interface (xorg qxl driver) is aware of this limitation and will setup framebuffers and crtcs accordingly. Userspace wh...
2018 Dec 12
0
[PATCH v2 01/18] drm/qxl: drop ttm_mem_reg arg from qxl_hw_surface_alloc()
...ers/gpu/drm/qxl/qxl_object.c | 2 +- 3 files changed, 4 insertions(+), 15 deletions(-) diff --git a/drivers/gpu/drm/qxl/qxl_drv.h b/drivers/gpu/drm/qxl/qxl_drv.h index 13a0254b59..38c5a8b1df 100644 --- a/drivers/gpu/drm/qxl/qxl_drv.h +++ b/drivers/gpu/drm/qxl/qxl_drv.h @@ -497,8 +497,7 @@ int qxl_surface_id_alloc(struct qxl_device *qdev, void qxl_surface_id_dealloc(struct qxl_device *qdev, uint32_t surface_id); int qxl_hw_surface_alloc(struct qxl_device *qdev, - struct qxl_bo *surf, - struct ttm_mem_reg *mem); + struct qxl_bo *surf); int qxl_hw_surface_dealloc(struct qxl_devi...
2006 Aug 06
1
extractAIC using surf.ls
Although the 'spatial' documentation doesn't mention that extractAIC works, it does seem to give an output. I may have misunderstood, but shouldn't the following give at least the same d.f.? > library(spatial) > data(topo, package="MASS") > extractAIC(surf.ls(2, topo)) [1] 46.0000 437.5059 > extractAIC(lm(z ~ x+I(x^2)+y+I(y^2)+x:y, topo)) [1] 6.0000 357.5059 # and if the AIC values differ, shouldn't they do so by an additive constant? > (extractAIC(surf.ls(2, topo))-extractAIC(lm(z ~ x+I(x^2)+y+I(y^2) +x:y, topo)))[2] [1] 80 >...
2001 Sep 25
1
error with surf.ls in spatial
Hello R users, Can someone point me to a solution to the problem below? The surf.ls() call works fine in other contexts, e.g. the example in help(surf.ls). I'm using R 1.3.1, and get the same error regardless of the platform (debian Linux, MS Windows 98). Many thanks, Stewart > library(spatial) > topo.kr <- surf.ls(2,midxy) Error in surf.ls(2, midxy) : NA/NaN/I...
2003 Apr 29
1
polynomial fitting
I'm trying to find a way to fit a polynomial of degree n in x and y to a set of x, y, and z data that I have and obtain the coefficients for the terms of the fitted polynomial. However, when I try to use the surf.ls function I'm getting odd results. > x <- seq(0, 10, length=50) > y <- x > f <- function (x, y) {x^2 + y} > library(spatial) > test <- data.frame(x=x, y=y, z=f(x, y)) > test.kr <- surf.ls(2, test) > test.kr$beta [1] 0 0 0 0 0 0 When I try the example...
2004 Feb 28
2
questions about anova
Hello all, I have two questions about anova (one is probably VERY basic...) 1 - when one asks for a summary of a trend surface created with surf.ls, he/she gets: > summary(g3r) Analysis of Variance Table Model: surf.ls(np = 3, x = gradiente$east, y = gradiente$north, z = gradiente$num1) Sum Sq Df Mean Sq F value Pr(>F) Regression 215.7182 9 23.968693976 2686.508 < 2.22e-16 Deviat...
2008 Mar 14
1
Lme does not work without a random effect (UNCLASSIFIED)
...re how to group the data without continuous value which is shown in the error message at the bottom line. If I use 'aov' with Error(Block), is there a test method comparing between with and without the Block random effect. I'm using R 2.4.1. Appreciate your help. Kyong LCU ST1 SURF Block 1 6.71 A N 1 2 6.97 A Y 1 3 6.77 B N 1 4 6.90 B Y 1 5 6.63 C N 1 6 6.94 C Y 1 7 6.79 D N 1 8 6.93 D Y 1 9 6.23 A N 2 10 6.83 A Y 2 11 6.61 B N 2 12 6.86 B Y 2 13 6.51 C N...
2004 Mar 19
1
Spatial Statistics: surf.gls
In an experimental setup we obtain z-data samples at equidistant grid points. The surf.gls (Kriging) algorithm produces an error under this circumstance when performing the Choleski decomposition. A workaround is to dither the grid coordinates using (x <- rnorm(length(x)) ; y<- rnowm(length(y))). Question: Is this an expected behaviour of the surf.gls function ? Regards,...
2004 Dec 09
3
surf.ls
Hello, I am looking into description of surf.ls(spatial) and see under value $beta - the coefficients. When I use polynomial of degree 2 to fit surface I expect to get 4 coefficients: z = a_1 x^2 + a_2 xy + a_3 y^2 + a_4 What do beta really stand for and why do I get $beta vector of length 6? Thakns, Mark
2013 Jun 29
2
[PATCH] nv50: H.264/MPEG2 decoding support via VP2, available on NV84-NV96, NVA0
...l chunked_decode) >> +{ >> + struct nv50_context *nv50 = (struct nv50_context *)context; >> + struct nouveau_screen *screen = &nv50->screen->base; >> + struct nv84_decoder *dec; >> + struct nouveau_pushbuf *bsp_push, *vp_push; >> + struct nv50_surface surf; >> + struct nv50_miptree mip; >> + union pipe_color_union color; >> + struct nv04_fifo nv04_data = { .vram = 0xbeef0201, .gart = 0xbeef0202 }; >> + int ret, i; >> + int is_h264 = u_reduce_video_profile(profile) == PIPE_VIDEO_CODEC_MPEG4_AVC; >>...
2011 Apr 10
2
Usb surf stick for internet
Hello, I am searching for an internet usb surf-stick (umts) that works under CentOS. Is anyone using such a stick and if so, which chip has this usb-stick? Would a Huawei E160E chip work under CentOS? Or maybe under CentOS with the 2.6.35 kernel from elrepo? Thank you very much! regards Olaf
2013 Mar 20
0
unexpected local minima/maxima with surf.gls
Hi there, I use the surf.gls() function to fit a variable measured over a surface. When I plot the predicted surface, there are local minima/maxima in almost every coordinate where data were measured, which seems aberrant. For instance: ?? x <- c(343,293,343,243,293,343,443,543,593,243,293,343,393,443,493,543,593,143,...
2002 Oct 11
0
Erhalten Sie Langsam Reich - Get paid to surf
...ultipart Boundary 1011021320 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 8bit Erhalten Sie Langsam Reich Möchten Sie für Zeitihr zahlend erhalten angeschlossen dem Internet Wenn ja dann Überprüfung diese Liste der Bezahlung, zum von von Programmen hier zu surfen Get Rich Slowly Do you want to get paid for the time your connected to the internet If yes then check this list of pay to surf programs. here --= Multipart Boundary 1011021320 Content-Type: text/html; charset="ISO-8859-1" Content-Transfer-Encoding: 8bit <html> <head&gt...
2012 Feb 09
2
Lattice 3d coordinate transformation
Hello List! I asked this before (with no solution), but maybe this time... I'm trying to project a surface to the XY under a 3d cloud using lattice. I can project contour lines following the code for fig 13.7 in Deepayan Sarkar's "Lattice, Multivariate Data Visualization with R", but it fails when I try to "color them in" using panel.levelplot. ?utilities.3d says there may be...
2007 Mar 22
2
unexpected behavior of trellis calls inside a user-defined function
...(iris$Sepal.Length), to = max(iris$Sepal.Length), length = 50), Petal.Length = seq(from = min(iris$Petal.Length), to = max(iris$Petal.Length), length = 50))) irisFit <- lm(Sepal.Width ~ Sepal.Length * Petal.Length, data = iris) predSurf <- data.frame(predVals, Sepal.Width = predict(irisFit, predVals)) trellis.device("X11",width = 8, height = 8) levelplot(Sepal.Width ~ Sepal.Length * Petal.Length, predSurf, main = "Produced at command line, Take 1") # put levelplot call inside a function myFunc...
2013 Jun 29
0
[PATCH] nv50: H.264/MPEG2 decoding support via VP2, available on NV84-NV96, NVA0
...+ bool chunked_decode) > +{ > + struct nv50_context *nv50 = (struct nv50_context *)context; > + struct nouveau_screen *screen = &nv50->screen->base; > + struct nv84_decoder *dec; > + struct nouveau_pushbuf *bsp_push, *vp_push; > + struct nv50_surface surf; > + struct nv50_miptree mip; > + union pipe_color_union color; > + struct nv04_fifo nv04_data = { .vram = 0xbeef0201, .gart = 0xbeef0202 }; > + int ret, i; > + int is_h264 = u_reduce_video_profile(profile) == PIPE_VIDEO_CODEC_MPEG4_AVC; > + int is_mpeg12 = u_r...