Displaying 3 results from an estimated 3 matches for "vielfach".
Did you mean:
vielfaches
2005 May 18
1
Testing for warning inside functions
...2,2)
print(0)
warnings() # no warning is shown
print(1)
try({xxx})
print(2)
print(geterrmessage())
print(3)
warnings()
print(4)
}
> f()
[1] 0
[1] 1
Fehler in try({ : Objekt "xxx" nicht gefunden
Zus??tzlich: Warnmeldung:
Datenl??nge [3] ist kein Teiler oder Vielfaches der Anzahl der Zeilen [2]
in matrix
[1] 2
[1] "Fehler in try({ : Objekt \"xxx\" nicht gefunden\n"
[1] 3
Warning message:
Datenl??nge [3] ist kein Teiler oder Vielfaches der Anzahl der Zeilen [2]
in matrix
[1] 4
> version
platform i686-pc-linux-gnu
arch i686
os...
2010 Mar 08
2
fit a gamma pdf using Residual Sum-of-Squares
...t I have the following message error (sorry, this is in German):
Fehler in qr(.swts * attr(rhs, "gradient")) :
Dimensionen [Produkt 3] passen nicht zur Länge des Objektes [23]
Zusätzlich: Warnmeldung:
In .swts * attr(rhs, "gradient") : Länge des längeren Objektes
ist kein Vielfaches der Länge des kürzeren Objektes
Could anyone help me with the code?
I would greatly appreciate it.
Sincerely yours,
Vincent Laperrière.
[[alternative HTML version deleted]]
2012 Aug 03
3
Sum two Vectors of different length
...t of my code I want to sum two vectors element-wise
the problem is that either the 1st vector or the 2nd vector always have one or two less elements
example of my problem
In TotalVector + (datalist2[[1]]$dataset$Results[[j]]$Results[[time]]$Sweep) :
Länge des längeren Objektes
ist kein Vielfaches der Länge des kürzeren Objektes
Browse[1]> str(TotalVector)
int [1:10308] 3032 3048 3075 2978 3026 3012 2933 2987 3063 3038 ...
Browse[1]> str(datalist2[[1]]$dataset$Results[[j]]$Results[[time]]$Sweep)
int [1:10307] 2 1 3 1 5 6 3 1 0 2 ...
as you can see the two vectors differ only in o...