[sage-support] Re: How to send (import) any sage variable back to other software in Sage e.g. Maxima or R

2017-06-22 Thread Nils Bruin
On Thursday, June 22, 2017 at 7:40:43 PM UTC+2, kcrisman wrote: > > Just in general, you should be able to do > > f = stuff > > y = maxima(f) > > z = y._sage_() # or maybe sage(y) > Furthermore, results transferred to interfaces are assigned to variables sage: U=maxima(sin(x)) sage: U.name() 'sag

[sage-support] Re: How to send (import) any sage variable back to other software in Sage e.g. Maxima or R

2017-06-22 Thread kcrisman
Just in general, you should be able to do f = stuff y = maxima(f) z = y._sage_() # or maybe sage(y) -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-suppo

[sage-support] Re: How to send (import) any sage variable back to other software in Sage e.g. Maxima or R

2017-06-22 Thread Dima Pasechnik
On Thursday, June 22, 2017 at 10:39:58 AM UTC+1, Jozef HanĨ wrote: > > Probably a simple task. > > Environment: cocalc sage worksheet > > PROBLEM > Background) It seems that I understand how to send a variable from e.g. > Maxima mode (%maxima) to Sage mode. > e.g. using this code in CoCalc: > -