Displaying 13 results from an estimated 13 matches for "bertini".
Did you mean:
bertin
2010 Dec 30
2
key-value mapping in C inside R?
...me modifications in arima.c.
I've noticed that a big internal array of double (rbar) is usually
sparse and I'd like to add an option to store it as key-value mapping.
Is there a library function or some other approach already used inside
the R core for key-value mappings?
Thanks,
Matteo Bertini
2010 Jan 28
5
Compiling problem on Ubuntu 9.10 64 bit
Hello,
I''m trying to compile wxruby for Ruby 1.9 on Ubuntu Karmic 64 bit, but I
can''t get it to work. I''ve already done this for the 32 bit version (on
another machine, of course), so I don''t see where''s the problem with
that. I thought, I had all neccessary libraries installed, but maybe you
know better... After compiling for a long time, rake fails
2010 Mar 19
1
Arima forecasting
...ello everyone,
I'm doing some benchmark comparing Arima [1] and SVR on time series data.
I'm using an out-of-sample one-step-ahead prediction from Arima using
the "fitted" method [2].
Do someone know how to have a two-steps-ahead forecast timeseries from Arima?
Thanks,
Matteo Bertini
[1] http://robjhyndman.com/software/forecast
[2] AirPassengers example on page 5
2010 Mar 23
2
wxGrid merge cell
...ex:
--------------------------------------
| LABEL 1 | LABEL 2 | LABEL 3 |
--------------------------------------
| VALUE CELL MERGE | ANOTHER |
--------------------------------------
| | | |
--------------------------------------
Many Thanks
Carlo Bertini
www.waydotnet.com
--
Posted via http://www.ruby-forum.com/.
2007 May 24
1
Search scoping in acts_as_ferret
Hello,
I am exploring acts_as_ferret, and the first question that pops to mind
is scoping, i.e. how to restrict searches in various ways.
For example, I have a Post model with title, content, and user_id as
attributes, and I want users to be able to search through their own
posts only.
Normally, of course, I would do
Post.find(:all, :conditions=>["user_id=?", current_user],
2010 Jan 21
0
[ wxruby-Bugs-27716 ] ruby 1.9.1p243 [i386-mingw32] not compile with wxWidgests 2.8.10
Bugs item #27716, was opened at 21/01/2010 13:39
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=218&aid=27716&group_id=35
Category: None
Group: None
Status: Open
Resolution: None
Priority: 3
Submitted By: Carlo Bertini (waydotnet)
Assigned to: Nobody (None)
Summary: ruby 1.9.1p243 [i386-mingw32] not compile with wxWidgests 2.8.10
Initial Comment:
reference:
http://www.ruby-forum.com/topic/202491
with:
ruby 1.9.1p243 (2009-07-16 revision 24175) [i386-mingw32]
gcc.exe 3.4.5
swig.exe 1.3.38
rake 0.8.7
not compi...
2010 Nov 29
17
wxruby is dead?
I wanted to know whether the development of the project is still active
or not.
many bugs in the bug tracker are open from 25/03/2009 ....
thank you very much
Carlo Bertini
--
Posted via http://www.ruby-forum.com/.
2011 Apr 09
0
stats/arima.c memory allocation
...ry and in a time that is similar for
small lags and faster for bigger lags (without the r<350 limit).
Here the modified code: https://gist.github.com/911292
The question is, there are theoretical guarantees that the iterative
solution is the right solution?
Some hints/directions/books?
Matteo Bertini
[[alternative HTML version deleted]]
2006 Dec 01
1
Starting...
Hi all! I am new in RoR and I am with a doubt that can be stupid but I
thank any aid. I am with a server and necessary to publish a RoR
application, it was accustomed with php that public_html was necessary
only to place the archives in the folder but in RoR I do not make nor
idea. The staff who installed the RoR for me there ordered me log so
that he can know oq was installed, lacks some thing?
2006 Aug 13
4
has_many and foreign_key question
Alright, noob here, etc. etc.
Trying to figure out the has_many usage. If I understand correctly, when
you declare that a table/class has_many whatevers, the rails assumption
is that there will be a foreign key in the whatevers table pointing back
to the ''id'' primary key in the first table. This doesn''t seem to be the
only way to have a ''has_many''
2010 Feb 03
7
could not find rmagick locally or in a repository
I unzipped simple captcha in vendor/plugins
Then I did
>rake simple_captcha:setup
Gave error:
rake aborted!
no such file to load -- RMagick2.so
SO I thought Rmagick has to be installed.
So downloaded
2.12.0 binary gem for Ruby 1.8.6 DT 2009-10-04 16:05
RMagick-2.12.0-ImageMagick-6.5.6-8-Q8.zip
Unzipped the file
Ran ImageMagick-6.5.6-8-Q8-windows-dll.exe
It installed the program in
2009 Sep 11
3
For sending my R package as part of R-project
...iple plots (S Ellison)
22. [R-pkgs] new version of R-package mice (mgko at planet.nl)
23. Re: Intercept=0 in gam from gam package (Gavin Simpson)
24. Running R in Windows server (srpd TCLTK)
25. Re: executing rscript from VB (Duncan Murdoch)
26. fit arima long period alternatives (Matteo Bertini)
27. Re: lean text label below barplot table (Sunil Suchindran)
28. Re: Running R in Windows server (Uwe Ligges)
29. Re: Running R in Windows server (Barry Rowlingson)
30. Re: Negative AIC (Ben Bolker)
31. Re: tranform a table? (Don MacQueen)
32. Re: Negative AIC (Corrado)
33. Merge d...
2006 Aug 13
0
Custom id field auto_increment increment and offset?
Hi all,
in mysql, you can set the following environment variables:
set @@auto_increment_offset = 4;
set @@auto_increment_increment =10;
such that:
create table people (id int auto_increment primary key, name char(100));
insert into people set name=''Giuseppe'';
insert into people set name=''Laura'';
select * from people;
+----+----------+
| id | name |