search for: jacobi

Displaying 20 results from an estimated 63 matches for "jacobi".

Did you mean: jacob
2008 Dec 11
0
Fwd: Jacobi Plane Rotations in R
http://idisk.mac.com/jdeleeuw-Public/jacobi This is paper/software for various techniques based on Jacobi plane rotations. There is R code for -- classical cyclical Jacobi Eigen diagonalization -- Jacobi-based SVD diagonalization -- approximate simultaneous diagonalization of symmetric matrices (De Leeuw/Pruzansky 1978) -- approximate...
2017 Jul 01
2
Jacobi 5 Point Stencil Code not Vectorizing
I am able to vectorize it with the following code; #include <stdio.h> #define N 100351 // This function computes 2D-5 point Jacobi stencil void stencil(int a[][N], int b[][N]) { int i, j, k; for (k = 0; k < N; k++) { for (i = 1; i <= N-2; i++) for (j = 1; j <= N-2; j++) b[i][j] = 0.25 * (a[i][j] + a[i-1][j] + a[i+1][j] + a[i][j-1] + a[i][j+1]); for (i = 1; i <= N-2; i++) for (j = 1;...
2017 Jul 01
2
Jacobi 5 Point Stencil Code not Vectorizing
Hello, I am trying to vectorize following stencil code; #include <stdio.h> #define N 100351 // This function computes 2D-5 point Jacobi stencil void stencil(int a[restrict][N]) { int i, j, k; for (k = 0; k < 100; k++) { for (i = 1; i <= N-2; i++) { for (j = 1; j <= N-2; j++) { a[i][j] = 0.25 * (a[i][j] + a[i-1][j] + a[i+1][j] + a[i][j-1] + a[i][j+1]); } } }} I have used the foll...
2003 Dec 12
1
jacobi.root, scre.eq, cgf.0, cgf.1 and cgf.2 R-plus functions nee ded
Who can send to me code that can perform in R-plus jacobi.root, scre.eq, cgf.0, cgf.1 and cgf.2 that are part of the S-plus package? Marc D. Brodsky
2017 Jul 01
3
Jacobi 5 Point Stencil Code not Vectorizing
...Sat, Jul 1, 2017 at 4:08 PM, hameeza ahmed <hahmed2305 at gmail.com> > wrote: > >> Hello, >> >> I am trying to vectorize following stencil code; >> >> #include <stdio.h> >> #define N 100351 >> >> // This function computes 2D-5 point Jacobi stencil >> void stencil(int a[restrict][N]) >> { >> int i, j, k; >> for (k = 0; k < 100; k++) >> { for (i = 1; i <= N-2; i++) >> { for (j = 1; j <= N-2; j++) >> { a[i][j] = 0.25 * (a[i][j] + a[i-1][j] + a[i+1][j] + a[i...
2007 Apr 14
2
Installation Worries
I have been trying to start up Icecast2 using http://www.howtoforge.com/linux_webradio_with_icecast2_ices2 as my docset. The icecast server comes up; I'm able to go to http://localhost:8000/ and see the pages. I can't seem to get the ices2 part working. I use the suggested config file: [...] <input> <module>playlist</module> <param
2013 Oct 11
3
Gaussian Quadrature for arbitrary PDF
Hi all, We know that Hermite polynomial is for Gaussian, Laguerre polynomial for Exponential distribution, Legendre polynomial for uniform distribution, Jacobi polynomial for Beta distribution. Does anyone know which kind of polynomial deals with the log-normal, Student抯 t, Inverse gamma and Fisher抯 F distribution? Thank you in advance! David [[alternative HTML version deleted]]
2007 Nov 12
1
How to set up your library location for multiple users
I'm running R 2.5.0 (with the upgrade to 2.6.0 scheduled) on a and trying to write a few applications that will be run as myself, as my boss and as the web server, on one of many Solaris x86 servers. I'd like to have my library sharable, and I thought I had found the way by putting this line early in my R scripts: .lib.loc="/home/jacoby/My_R_Lib/" But I tried that with my
2017 Oct 23
3
Jacobi 5 Point Stencil Code not Vectorizing
...<div> </div><div>22.10.2017, 03:21, "hameeza ahmed" <hahmed2305@gmail.com>:</div><blockquote type="cite"><div>Hello,<div> </div><div>The following stencil function that you wrote few months ago (for computing 2D-5 point Jacobi stencil) is vectorizable.</div><div> </div><div><div>void stencil(int a[][N], int b[N])</div><div>{</div><div>  int i, j, k;</div><div>    for (k = 0; k < N; k++) {</div><div>        for (i = 1; i <= N-2; i++) {<...
2017 Oct 24
3
Jacobi 5 Point Stencil Code not Vectorizing
...he issue is. >> >> Regards, >> Serge. >> >> >> 22.10.2017, 03:21, "hameeza ahmed" <hahmed2305 at gmail.com>: >> >> Hello, >> >> The following stencil function that you wrote few months ago (for >> computing 2D-5 point Jacobi stencil) is vectorizable. >> >> void stencil(int a[][N], int b[N]) >> { >> int i, j, k; >> for (k = 0; k < N; k++) { >> for (i = 1; i <= N-2; i++) { >> for (j = 1; j <= N-2; j++) >> b[j] = 0.25 * (a[...
2024 Apr 17
1
howto achieve 'hide unreadable' for msdfs symlinks
On 16-04-2024 16:21, Konrad Jacobi via samba wrote: > hi, > on a samba domain member file server i'm using dfs root shares with > multiple msdfs symlinks pointing to other shares (on the same server), > which works fine. These linked shares have different access rights, > therefore a user might have access to o...
2024 Apr 16
2
howto achieve 'hide unreadable' for msdfs symlinks
...hts could only be checked after resolving and accessing the symlinked share by the client. To hide the symlink from the client, the server would have to resolve the symlink or evaluate some ACL on the symlink before (as mentioned above). I'd be grateful for ideas thanks -- M. Sc. Konrad Jacobi Fraunhofer-Institut f?r Gro?strukturen in der Produktionstechnik IGP Albert-Einstein-Stra?e 30 ? 18059 Rostock Tel +49 381 49682-192 Fax +49 381 49682-12 konrad.jacobi at igp.fraunhofer.de http://www.igp.fraunhofer.de
2014 Mar 26
6
Is there any benefit to using NetworkManager on a server with a static IP?
I've been banging my head against the wall trying to get a simple two NIC bond to work. Got really odd behavior from service network restart, then finally decided to disable NetworkManager. Voila! Bonding and the network service script starts working just the way I expect. Does anyone here actually use NetworkManager on anything but a laptop or desktop? I can't seem to figure out a reason
2004 Nov 26
1
rsync +progress +percentage
Hi everyone! Im new to this list and i searched the archive for any dupes of this subject but didnt find any. I have a small problem, i want to use rsync to keep all of our systems up 2 date but recently we had some servers that only did a half update. We want to be able to see a progress indicator of the transfer. The best thing was if there was any way to get it in percentage or only a
2011 Apr 12
2
Compile CELT to Windows 64
did anyone compile CELT for Windows 64 bit? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/opus/attachments/20110412/746edf83/attachment-0002.htm
2007 Nov 26
1
Plotting with R: setting the y axis
I have a series of numbers I'm wanting to plot. They come from a nanodrop machine, which graphs with a specific x and y indices. X goes from 220nm to 350nm, which I can set. But the y axis should go from -5 to 65, but I'm finding it impossible to hardcode that. I've looked. I've typed ?plot at the R prompt. Google has not been my friend. _R Graphics_, if it holds the key, has not
2005 May 06
2
FAQ 7.31
Jacobi's theta functions crop up here and there in various branches of mathematics, such as unimodular and elliptic functions. They have Taylor expansions, but the powers increase as the square of n, as in 1 + z + z^4 + z^9 + z^16 + z^25 + . . . so they converge very quickly, provided |z|<1 T...
2005 May 10
3
splitting connections between ppp0 and ppp1
Hi. Before start i need to say that i lost a lot of weekends trying every single posible solution on the net. So this i s my last resource. This is NOT an ERROR, is just help to make something work. (sorry for my english) Hi have 3 zones loc eth0 => here we have 192.168.1.0/24 with 12 IP''s/PC''s I can subdivide in 2 tematics zones but if not needed there is no reason to
2006 Oct 18
1
Calculation of Eigen values.
Dear all R users, Can anyone tell me to calculate Eigen value of any real symmetric matrix which algorithm R uses? Is it Jacobi method ? If not is it possible to get explicit algorithm for calculating it? Thanks and regards, Arun [[alternative HTML version deleted]]
2011 Apr 03
1
How much buffer to use in the receiver side?
Hi, I am about to start using CELT for streaming audio over the net. i assume that i better have some buffering in the receiver side to overcome small jitter in the network. but my application very sensitive to delay. can anyone advise about it? i am using windows for both sender and receiver side. thanks, Doron -------------- next part -------------- An HTML attachment was scrubbed... URL: