search for: deprecati

Displaying 3 results from an estimated 3 matches for "deprecati".

Did you mean: deprecate
2006 Apr 27
1
issue with deprecatiing push_with_attributes
I''ve been listening to the discussions regarding the plans to eliminate push_with_attributes. While I think it''s good practice to make join models if you''re developing a new system, I can''t help but think t hat push_with_attributes should be left around to deal with legacy databases. I might want to wrap my application around a database I don''t
2007 Jun 22
2
multiple return
...in a multiple return from a function? for example creating the simple function: somma <- function (a, b) { c <- a+b return (a, b, c) } when I call it, it runs but returns the following output: > somma(5, 7) $a [1] 5 $b [1] 7 $c [1] 12 Warning message: return multi-argomento sono deprecati in: return(a, b, c) i.e. multi-return is deprecated... thanks a lot best regards Manuele -- Manuele Pesenti manuele a inventati.org amicogodzilla a jabber.linux.it http://mpesenti.polito.it
2007 Jun 24
2
matlab/gauss code in R
...omma <- function (a, b) { > c <- a+b > return (a, b, c) > } > > when I call it, it runs but returns the following output: > > > somma(5, 7) > $a > [1] 5 > > $b > [1] 7 > > $c > [1] 12 > > Warning message: > return multi-argomento sono deprecati in: return(a, b, c) > > i.e. multi-return is deprecated... > > thanks a lot > best regards > Manuele > > -- > Manuele Pesenti > manuele en inventati.org > amicogodzilla en jabber.linux.it > http://mpesenti.polito.it > > > >...