similar to: wireframe_box_axis

Displaying 20 results from an estimated 1100 matches similar to: "wireframe_box_axis"

2004 Sep 12
3
calculating error
Could anybody explain this results? >sin(2*pi) -2.449213e-16 #should be zero >(10^16)*sin(log2(4)*pi) -2.449213 #should be zero too and explain what to do to correct this events? Thanks!!! Branimir K. Hackenberger
2003 May 22
1
(no subject)
Dear R-helpers! What it's means "Rank failure in Choleski decomposition" by using of function surf.gls {spatial}? Sincerely Yours Branimir K. Hackenberger
2011 Apr 17
5
cube root
This is some interesting: > -8^(1/3) [1] -2 > x=(-8:8) > y=x^(1/3) > y [1] NaN NaN NaN NaN NaN NaN NaN NaN 0.000000 1.000000 [11] 1.259921 1.442250 1.587401 1.709976 1.817121 1.912931 2.000000 So, can anybody explain this?! (Why is x[1]^(1/3)=y[1]=NaN, but -8^(1/3)=-2?) Thx!!! [[alternative HTML version deleted]]
2008 May 10
1
BiodiversityRGUI_problem2
After some investigation I found out that constrained ordination is working fine under R version 6.5.0 and 6.5.1 but not under any of newer versions. Is it posible to repair/make something in for example newest version of R 7.0 lito enble correct using of constrained ordination under BiodiversityRGUI environment? [[alternative HTML version deleted]]
2011 Feb 10
1
problem with R (akima, fUtilities) in Ubuntu 10.04
Dear all! I'm using R 2.12.1 in Ubuntu 10.04. Problem is that when using functions like interp (package akima) and akimaInterp (package fUtilities), I get different results every time for the same data set. I've checked the interpolated results, and two examples (in attachment) have different sum of NA values. Also when I subtract the x,y,z values from two interpolations of the same data
2011 Nov 26
5
cumsum in 3d arrays
Hello! Is it posible to apply /cumsum()/ along the 3rd dimension of 3D array? Something like matrlab function - /cumsum (*A*,dim)/ which returns the cumulative sum of the elements along the dimension of *A* specified by scalar dim. Thanks in advance ?eljka -- View this message in context: http://r.789695.n4.nabble.com/cumsum-in-3d-arrays-tp4110470p4110470.html Sent from the R help mailing
2003 Oct 09
1
R-OpenOffice.org Calc
I have been very satisfied with R-Excel interface (DCOM). Few months ago I have changed my OS to Linux-Mandrake, and now I am using OpenOffice.org Calc as spreadsheet. I would like to know does exist some R-OpenOffice.org interface or how is possible to use R-functions in OpenOffice.org Calc? Thanks a lot!
2009 Apr 03
1
Using multiple 'peer' identities on one phone with 1.4
Hi! When using multiple identities on one physical phone (Snom 320), I get check_auth: username mismatch, have <7705>, digest has <7736> messages when placing a call from a different account than the first one. From reading the asterisk source, I can see that the problem is that peer authentication is not matched against username, but against ip/port. I need to have multiple
2008 Jul 07
1
DTMF on iax channel is not interpreted by asterisk
Hi! I'm using asterisk 1.4.17 with twinkle and a custom phone based on iaxclient 2.0.2 and I'm struggling a bit with DTMF and features.conf. While the twinkle client is able to initiate an attended transfer using *2 (as configured in features.conf), the iax client is not. I can see the DTMF messages showing up on the asterisk console, but asterisk does not invoke the features
2003 Dec 25
6
Plot a sphere
Hi, I'm new to R (and math ;) Would somebody please be so kind as to direct me in plotting a 3D sphere? I tried something in the lines of: #### y <- x <- seq(-pi, pi, length=pi*10) f <- function(x,y) { z <- sqrt(pi - x^2 - y^2) #z[is.na(z)] <- 0 z } z <- outer(x, y, f) persp(x, y, z, theta = 120, phi = 30) #### I've also tried: .... make.surface.grid(...) ..
2009 Sep 08
2
Fax For Asterisk and SendFax question
Hi everybody, I've installed Free Fax For Asterisk in my Asterisk box but I don't understand how it works as when using SendFax application from dialplan, I can't find how to introduce destination fax number. How this application works? Do I have to call destination fax using Dial application, detect somehow that it's a fax and then use SendFAX application specifying FAXOPTs and
2009 Mar 08
2
Fwd: add a new queue strategy: SBR
Hi., do you think that sbr policy in queue strategy will be useful? Bye ---------- Forwarded message ---------- From: nik600 <nik600 at gmail.com> Date: Sat, 7 Mar 2009 15:21:14 +0100 Subject: add a new queue strategy: SBR To: Asterisk Developers Mailing List <asterisk-dev at lists.digium.com> Hi to all isn't there any plan to add the Skills Based Routing strategy in
2005 Nov 18
2
Adding points to wireframe
Hi, I am using function wireframe from package lattice to draw a 3D surface. I would like to add a few points on the surface. I read in a post from Deepayan Sarkar that "To do this in a wireframe plot you would probably use the panel function panel.3dscatter". Does someone have an example? When calling panel.3dscatter with only x, y and z arguments I get "argument
2007 Dec 20
2
plot3d, wireframe, persp help
Hello, I am trying to get a surface plot of a data set that looks like the following, 1 2 5.6 5 9 2.4 9 8 9.8 ... to (60,000 rows down) From my homework, the persp function only works with evenly spaced data points with the z data beeing in a matrix. my data is not in that format. the wireframe fxn gives me an error, no applicable method for "wireframe" the
2010 Jul 30
2
Layering multiple persp plots
Hi all, I've got two persp plots with Identical X and Y's, and I'd like to plot them on the same graph, so that it is obvious where one plot is above the other. I can't find any mention of this anywhere. Do I need to use wireframe? Any help is appreciated. Thanks, -- Ian Bentley M.Sc. Candidate Queen's University Kingston, Ontario [[alternative HTML version deleted]]
2011 Jan 03
4
how to invert the axes in the wireframe() plot
Dear List, I am using the wireframe function in the lattice package, and I am wondering if it is possible to invert the default axes orientation for x and y axes... what parameter should I look for? Best regards, Simone Gabbriellini
2009 Jun 24
1
lattice wireframe within a loop ???
Hi, I have the following problem. Calling wireframe within a loop results into an empty window(s) #generate some data temp = expand.grid(A = 1:3,B = 1:3) temp = cbind(temp, y1 = rnorm(9)) temp = cbind(temp, y2 = runif(9)) #plot y1 and y2 in two different windows for(i in 1:2) { wireframe(y1 ~ A*B, temp, shade =T) windows() wireframe(y2 ~ A*B, temp, shade =T) } #However, calling it twice
2006 Oct 25
1
cloud() works but wireframe() is blank
Per the message from Alexander Nervedi, 29 April 2006: > I have to be making a riddiculously silly ommission. > when I run the fillowing i get the cloud plot ok. But I cant figure > out what I am missing out when I call wireframe. > Any help would be appreciated. > x<-runif(100) > y<-rnorm(100) > z<-runif(100) > temp <-data.frame(x,y,z) >
2011 Mar 04
1
lattice: wireframe "eats up" points; how to make points on wireframe visible?
Dear expeRts, I would like to add two points to a wireframe plot. The points have (x,y,z) coordinates where z is determined to be on the wireframe [same z-value]. Now something strange happens. One point is perfectly plotted, the other isn't shown at all. It only appears if I move it upwards in z-direction by adding a positive number. So somehow it disappears in the wireframe-surface
2011 Oct 13
2
how to plot two surfaces with lattice::wireframe
Hi all, I'd like to plot the Real and Imaginary parts of some f(z) as two different surfaces in wireframe (the row/column axes are the real and imag axes). I know I can do it by, roughly speaking, something like plotz <- expand.grid(x={range of Re(z)}, y={range of Im(z), groups=1:2) plotz$func<-c(Re(f(z),Im(f(z)) wireframe(func~x*y,data=plotz,groups=groups) But that seems like a