search for: iwork

Displaying 19 results from an estimated 19 matches for "iwork".

Did you mean: work
2010 Apr 03
2
(OT) OpenOffice.org calc chart strangeness.
...rom a soffice-calc spreadsheet. I expect it to take the leftmost column as the X-Axis, plotting the others on the Y-Axis, but it always creates an X-Axis of the row number in the columns, and the first column amongst the data. I have tried this on OpenOffice.org 3.2.0, NeoOffice(R) 3.0.2 Patch 2, iWork Pages, and Excel 12.2.4 in Microsoft Office 2008 for Mac. It does what I expect in iWork Pages and M$-Excel, but not in the various incantations of OpenOffice.org. I OO-calc has gone to a fancy wizard thingy that doesn't seem to have any way to specify details for the X-Axis, and I can't...
2002 Mar 01
1
fft
...ing fft_factor and fft_work directly in my C-code. Martin Maechler already told me that I should not do this -- anyway, the code works fine if the length of the vector is a multiple of 2,3,5. If the length of the vector has different form I get, in some cases, a segmentation fault when work and iwork are freed (I use C's malloc to allocate memory for work and iwork). No or less problems occur if I allocate more memory than stated in src/appl/fft.c. However R's fft in called in R does not fail. I would be grateful if anybody would tell me why this happens or to which fact I did not...
2009 Mar 25
2
Listing of LAPACK error codes
...dling of error codes 1 and 2. In Lapack.c I only see the reference to the variable info in certain Fortran code: F77_CALL(dsyevr)(jobv, range, uplo, &n, rx, &n, &vl, &vu, &il, &iu, &abstol, &m, rvalues, rz, &n, isuppz, &tmp, &lwork, &itmp, &liwork, &info); if (info != 0) error(_("error code %d from Lapack routine '%s'"), info, "dsyevr"); lwork = (int) tmp; liwork = itmp; work = (double *) R_alloc(lwork, sizeof(double)); iwork = (int *) R_alloc(liwork, sizeof(int)); F77_CALL(dsy...
2005 May 09
2
use "integrate" for functions defined in C, not R
...qags" that has it's own parameters of "lower, upper" and etc define in C, instead of parsing from R. And I call Rdqags(Cintfn, &lower, &upper, &epsabs, &epsrel, &result, &abserr, &neval, &ier, &limit, &lenw, &last, iwork, work); instead of Rdqags(Rintfn, (void*)&is, &lower, &upper, &epsabs, &epsrel, &result, &abserr, &neval, &ier, &limit, &lenw, &last, iwork, work); I am not passing (void*)&is because I no longer have the "environmen...
2004 Nov 18
0
Calling Rdqags doesn't produce correct result.
...ouble *a, double *b, double *epsabs, double *epsrel, double *result, double *abserr, int *neval, int *ier, int *limit, int *lenw, int *last, int *iwork, double *work, double *exx) { void *ex; ex = exx; Rdqags(tmpfun, ex, a, b, epsabs, epsrel, result, abserr, neval, ier, limit, lenw, last, iwork, work); } // User supplied function void tmpfun(double *x, in...
2008 Jul 25
1
oplocks
Hello I've just installed a samba server on a OS X server. I enable oplocks and it's good for rtf, odt or doc. But with iWork files it's very strange, iWork saves files in folder and oplocks didn't work. If someone has already do it or has an idea :)
2014 Jun 04
1
Lapack / dgesvx function declaration
...char* trans, const int* n, My reasoning: In the R-source: src/modules/lapack/dlapack.f I find the following lines: * SUBROUTINE DGESVX( FACT, TRANS, N, NRHS, A, LDA, AF, LDAF, IPIV, * EQUED, R, C, B, LDB, X, LDX, RCOND, FERR, BERR, * WORK, IWORK, INFO ) * * .. Scalar Arguments .. * CHARACTER EQUED, FACT, TRANS * INTEGER INFO, LDA, LDAF, LDB, LDX, N, NRHS * DOUBLE PRECISION RCOND where FACT is specified to a char. Might this simply be an error in Lapack.h? And can I just edit my Lapack.h and...
1999 Apr 22
1
mvfft (PR#176)
This message is in MIME format --_=XFMail.1.3.p0.Linux:990422185944:4782=_ Content-Type: text/plain; charset=us-ascii R-0.64.0 on RedHat Linux 5.1 Some problems with multivariate fast fourier transform. I have attached the dump of a 30 x 3 matrix that seems to reliably reproduce these problems 1) mvfft doesn't like vectors. It complains about not having enough memory: R>
2007 Jan 19
8
kate editor for R
Like kile for LaTeX, Linux/KDE's kate editor is an excellent editor for R, with easy code submission to a running R process. Syntax highlighting is good. I have not been able to figure out two things: - how to automatically reformat a line or region of text using good indentation rules (Emacs/ESS make this so easy by just hitting Tab while the cursor is in a line, or highlighting a
2019 Jun 14
2
Text-Extraction Libraries for Omindex
...: sourceforge.net/projects/libebook/ * License: GNU Lesser GPL 2.1+ and MPL 2.0+ I have been reading the code of this library, but it seems a bit complex. It could be a good option, but it will take a while to figure it out how it works. ============================== Libetonyek-dev: * For Apple iWork documents * Status: Beta * Info: wiki.documentfoundation.org/DLP/Libraries/libetonyek * License: MPL 2.0+ ============================== Libabw: * For AbiWord documents * Last release 2017-12 * Info: wiki.documentfoundation.org/DLP/Libraries/libabw * License: MPL 2.0 ============================...
2019 Mar 23
2
[GSoC] Questions about project Text-Extraction Libraries
Thanks! That was really useful! I wanted to share my approach to this project with the hope that you can give me some feedback. I am think that applying a design that foresees the incorporation of new file formats is the most suitable way to solve the problem. In the attached sketch we can see: * Bug_Box: It is responsible for encapsulating and handling errors. * File_extrator: It presents an
2003 Apr 22
4
"LAPACK routine DGESDD gave error code -12" with Debian (PR#2822)
Dear All, Under Debian GNU/Linux La.svd (with method = "dgesdd") sometimes gives the error "Error in La.svd(data, nu = 0, nv = min(nrow, ncol), method = "dgesdd") : LAPACK routine DGESDD gave error code -12" It seems not to depend on the data per se, but on the relationship between numbers of rows and columns. For example, if the number of columns is 100,
2011 Jan 19
1
How to build Theora decoder on VC++ paltform
On 17.01.2011 12:35, Raju wrote: > Dear friends > Recently i have downloaded Theora video codec from http://www.xiph.org/ > , > here its having both encoder and decoder , how can i build only > decoder on VC + windows platform , if i build now i will be getting " > Cannot open include file: 'ogg/ogg.h': No such file or directory " > pls send me solution for
2000 Dec 22
5
(HP-UX) scan: last line gets duplicated (PR#790)
The last line gets duplicated when a file is read like this: a <- scan(file=filename, what="", sep="\n", strip.white=c(TRUE), quiet=TRUE) (This error does not occur on Linux, the only other platform I tested.) Version: platform = hppa2.0-hp-hpux10.20 arch = hppa2.0 os = hpux10.20 system = hppa2.0, hpux10.20 Actually, all binaries are
2007 Apr 10
5
Drag and Drop and Crash
Hello List, I am running a 3.0.24 server on redhat EL4. I have a user that has mapped a drive to his home directory on the server. When he copies a file from the share to a local disk location, desktop for example, it goes just fine. When he attempts to copy / move / cut and paste a file from one location on the share to another location in the same share, it will literally crash his local
2007 Aug 10
16
[OT] Parallels or VMWare?
I''m looking to get parallels or vmware for my imac. Wondering what ppls opinions are. Besides web broswers I need to run some windows only stuff, and wondering about running MS Office Opinions? Thanx Daniel --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to
2011 Aug 23
13
Is OSX Lion a valid choice yet? Any issues?
Hi, My Snow Leopard just let me down and now it could be a "good" moment to upgrade to Lion. But I''m not sure is it an option yet. I would be using Rails 3.0.9, Ruby 1.9.2 via RVM. Postgresql DB. And probably some stuff via homebrew. Git, Versions and that type of stuff. Are the lights red for Lion since it is so fresh? Any experiences? Thanks. -- Posted via
2009 Oct 13
2
Mac R spinning wheel with Package Manager (PR#14005)
...work/Versions/A/Resources/libFontStreams.A.dylib 01000000 /Developer/Applications/Xcode.app/Contents/Library/Spotlight/SourceCode.mdimporter/Contents/MacOS/../../../../../../../../Library/PrivateFrameworks//DevToolsCore.framework/Versions/A/DevToolsCore 0158c000 /Library/Spotlight/iWork.mdimporter/Contents/MacOS/iWork 015df000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontValidation.dylib 0172c000 /Library/Spotlight/Microsoft Office.mdimporter/Contents/MacOS/../Frameworks/MetroFramework.fr...
2011 Jan 11
2
IE6 install problem
...eCheck[6295] PackageKit: *** Missing bundle identifier: /Library/Receipts/Office2008_en_word.pkg 11-01-07 8:13:47 AM SoftwareUpdateCheck[6295] PackageKit: *** Missing bundle identifier: /Library/Receipts/Office2008_en_word_help_hse.pkg 11-01-07 8:14:10 AM SoftwareUpdateCheck[6295] Downloading "iWork Update 5" 11-01-07 8:15:39 AM [0x0-0x306306].SoftwareUpdateCheck[6295] x signature 11-01-07 8:15:39 AM [0x0-0x306306].SoftwareUpdateCheck[6295] x iWork_9.0.5_Update.pkg.tar 11-01-07 8:15:41 AM [0x0-0x306306].SoftwareUpdateCheck[6295] x iWork_9.0.5_Update.pkg 11-01-07 8:15:41 AM [0x0-0x306306]....