Displaying 3 results from an estimated 3 matches for "nseri".
Did you mean:
nser
2002 Jan 29
3
dimnames usage in ts (PR#1288)
Full_Name: Tim Keitt
Version: 1.4
OS: Linux
Submission from: (NULL) (129.49.19.70)
I think this code in 'ts' is incorrect:
if (is.matrix(data) || is.data.frame(data)) {
nseries <- ncol(data)
ndata <- nrow(data)
dimnames(data) <- list(NULL, names)
}
since
> x <- data.frame(matrix(rnorm(100),ncol=10))
> names(x)
[1] "X1" "X2" "X3" "X4" "X5" "X6" "X7" "...
2012 Oct 15
1
[QEMU PATCH v4] create struct for machine initialization arguments
...--
hw/milkymist.c | 10 ++--
hw/mips_fulong2e.c | 9 ++-
hw/mips_jazz.c | 14 ++---
hw/mips_malta.c | 10 ++--
hw/mips_mipssim.c | 10 ++--
hw/mips_r4k.c | 10 ++--
hw/musicpal.c | 9 +--
hw/nseries.c | 22 ++++---
hw/null-machine.c | 7 +--
hw/omap_sx1.c | 22 ++++---
hw/openrisc_sim.c | 10 ++--
hw/palm.c | 9 +--
hw/pc_piix.c | 50 ++++++++--------
hw/petalogix_ml605_mmu.c | 8 +--...
2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...t_dstpitch, s->cirrus_blt_width,
- s->cirrus_blt_height);
- }
+ cirrus_do_copy(s, s->cirrus_blt_dstaddr - s->start_addr,
+ s->cirrus_blt_srcaddr - s->start_addr,
+ s->cirrus_blt_width, s->cirrus_blt_height);
return 1;
}
diff --git a/hw/nseries.c b/hw/nseries.c
--- a/hw/nseries.c
+++ b/hw/nseries.c
@@ -1361,7 +1361,8 @@
/* FIXME: We shouldn''t really be doing this here. The LCD controller
will set the size once configured, so this just sets an initial
size until the guest activates the display. */
- dpy...