如何绘制具有3列或更多列的离散数据集? MWE如下:
/* Required essentially to create the data set */
eqn1: 4 - x^2 - 4*y^2$
eqn2: y^2 - x^2 + 1$
sol: rk([eqn1,eqn2],[x,y],[-1.25, 0.75],[t,0,4,0.2])$
/* My current workaround to plot (x vs t) and (y vs t) */
n : length(sol)$
/* Select the ith column and create separate lists */
tseries : makelist(sol[i][1], i, 1, n)$
xseries: makelist(sol[i][2], i, 1, n)$
yseries: makelist(sol[i][3], i, 1, n)$
plot2d([
[discrete, tseries, xseries],
[discrete, tseries, yseries]
], [legend,"x","y"] ,[xlabel,"t"], [ylabel,"x, y"],[style,
[linespoints,2,2]],
[gnuplot_preamble,"set key box width 2 spacing 1.3 top left"])$
是否有更好的解决方案来绘制而不创建tseries
,xseries
和yseries
列表?
答案 0 :(得分:2)
好的,根据您的评论,我看到了目标。您的解决方案可以简化一些,尽管不是很多。无论如何,map(lambda([txy], [txy[1], txy[2]]), sol)
产生[t,x]点的列表,而map(lambda([txy], [txy[1], txy[3]]), sol)
产生[t,y]点的列表。因此,使用上面给出的sol
,我发现
plot2d ([[discrete, map(lambda([txy], [txy[1], txy[2]]), sol)],
[discrete, map(lambda([txy], [txy[1], txy[3]]), sol)]]);
具有所需的输出(为清晰起见,省略了绘图选项)。