How to export in GAP

405 views Asked by At

I'm fairly new to programming in GAP which is designed for computational algebra. I have made a computation and wish to make a scatter plot with my results however GAP does not have this functionality. Is it possible/how/where could I find out if it is possible to export a vector from GAP.

1

There are 1 answers

0
Olexandr Konovalov On

It is not specified in the question which tool is intended to be used to create plots. However, it does not really matter. The most general approach is to create input file(s) for such a tool from GAP, using PrintTo and AppendTo commands. There may be some additional support for some specific formats, for example for CSV in PrintCSV though.