Nothing
setMethod("Complex",
c(z="gpu.matrix.torch"),
function(z)
{
op = .Generic[[1]]
switch(op,
'Re' = {
z@gm <- z@gm$real
},
'Im' = {
z@gm <- z@gm$imag
},
'Conj' = {
z@gm <- z@gm$conj()
},
'Arg' = {
z@gm <- z@gm$angle()
},
'Mod'={
z@gm <- z@gm$abs()
}
)
return(z)
}
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.