Ask Your Question

ethanzell's profile - activity

2022-01-19 19:48:46 +0200 received badge  Notable Question (source)
2022-01-19 19:48:46 +0200 received badge  Popular Question (source)
2018-09-13 02:46:11 +0200 asked a question Calling normalizer function on sets

Question in the title. Is there a way to get the normalizer of a subset instead of a subgroup? I have sets of symmetric group elements and this would be very helpful.

2017-07-17 20:07:51 +0200 commented question How to save table output in an exportable manner

@vdelecroix I am using Windows 10 and Sage version 7.6, if that helps.

2017-07-14 19:45:44 +0200 received badge  Editor (source)
2017-07-14 15:06:11 +0200 received badge  Nice Question (source)
2017-07-14 13:33:12 +0200 received badge  Student (source)
2017-07-14 10:55:16 +0200 asked a question How to save table output in an exportable manner

Hello! I am a sage novice trying to export a table output to some image format (so that it might be shared). I tried using the .save() function as so:

   my_table1 = table(my inputs)
   result = my_table1.transpose()
   result.save('here')

My table outputs properly after I run the program (not featured), but for some reason I receive the following error when I try and save the table:

"Error! /home/sage/Documents/here.sobj is not UTF-8 encoded

Saving disabled.

See Console for more details."

Any help in exporting this table is greatly appreciated. Additionally, if you require any more information please do not hesitate to ask!

EDIT: I am working in Jupyter for Sage on a browser via localhost/8000; not sure if that matters.