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.
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
andAppendTo
commands. There may be some additional support for some specific formats, for example for CSV inPrintCSV
though.