[sage-support] Re: sagecell.sagemath

2016-06-30 Thread Andrey Novoseltsev
On Thursday, 30 June 2016 02:36:18 UTC-6, Cristina Flaut wrote: > > > Also I can't use > > https://sagecell.sagemath.org/ > > I hit "Evaluate" and nothing. > Please, help! > Thanks! > What code do you try to execute? And on what OS/browser? If the editor window is not functioning, does it help to

[sage-support] Re: How to convert (some particular) Sage objects into Macaulay2 ones

2016-06-30 Thread mehmetakifyetim
This was so helpful! I'm a self-learner and apparently still very amateur at writing Sage codes, since I have no Phyton background. There's a lot to learn. :) Thank you very much sir! Best Regards, Mehmet Akif Yetim 30 Haziran 2016 Perşembe 21:28:43 UTC+3 tarihinde Dima Pasechnik yazdı: > >

[sage-support] Re: How to convert (some particular) Sage objects into Macaulay2 ones

2016-06-30 Thread Dima Pasechnik
On Thursday, June 30, 2016 at 6:33:14 PM UTC+1, mehmeta...@gmail.com wrote: > > Thank you sir! I am new to these string manipulations, it worked like a > charm! > Maybe there is a shorter way to do this, but as I've learned from you, I > did the following: > > macaulay2('loadPackage "Graphs"')

[sage-support] Re: How to convert (some particular) Sage objects into Macaulay2 ones

2016-06-30 Thread mehmetakifyetim
Thank you sir! I am new to these string manipulations, it worked like a charm! Maybe there is a shorter way to do this, but as I've learned from you, I did the following: macaulay2('loadPackage "Graphs"') G = Graph({1:[2], 2:[1,3], 3:[2,4], 4:[3]}) E=G.edges() macaulay2('EG={}') for i in range(l

[sage-support] Re: How to convert (some particular) Sage objects into Macaulay2 ones

2016-06-30 Thread Dima Pasechnik
Basically, you need to build, in Sage, a string to pass to M2. E.g.: sage: a=1; b=31; macaulay2('G = graph({{'+str(a)+',2},{2,'+str(b)+'},{'+str(b)+',4}})') Graph{1 => {2}} 2 => {1, 31} 4 => {31} 31 => {2, 4} Ideally, you'd develop methods for Sage types to convert them to

[sage-support] Re: Hw install the SAGE?

2016-06-30 Thread mehmetakifyetim
Hi, You can use the link: http://localhost:8000/ in your web browser, as in the previous versions. When you get the Jupyter screen, click on the "New" button in the top rgiht corner and then choose "SageMath 7.2" option below. Then you're in. 30 Haziran 2016 Perşembe 11:36:20 UTC+3 tarihinde C

[sage-support] sagecell.sagemath

2016-06-30 Thread Cristina Flaut
Also I can't use https://sagecell.sagemath.org/ I hit "Evaluate" and nothing. Please, help! Thanks! -- 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] How to convert (some particular) Sage(7.2) objects into Macaulay2 ones to use in M2 interface

2016-06-30 Thread mehmetakifyetim
Hi, I do some calculations about graphs and ideals via M2 interface of Sage or just using M2, but for that, I have to use M2 input as below: sage: macaulay2('loadPackage "Graphs"') sage: macaulay2('G = graph({{1,2},{2,3},{3,4}})') as explained in the link: http://math.uiuc.edu/Macaulay2/doc/M

[sage-support] How to convert (some particular) Sage objects into Macaulay2 ones

2016-06-30 Thread mehmetakifyetim
Hi, I do some calculations about graphs and ideals via M2 interface of Sage or just using M2, but for that, I have to use M2 input as below: sage: macaulay2('loadPackage "Graphs"') sage: macaulay2('G = graph({{1,2},{2,3},{3,4}})') as explained in the link: http://math.uiuc.edu/Macaulay2/doc/M