Ask Your Question

sir jazs's profile - activity

2019-11-16 14:16:15 +0200 received badge  Famous Question (source)
2015-07-19 04:32:52 +0200 received badge  Notable Question (source)
2013-04-27 04:24:36 +0200 received badge  Popular Question (source)
2011-07-05 19:43:55 +0200 asked a question html.table() in sage???

Hi group:

I need make the table in sage. I have var that run, so I generated the header problems. these problems do not occur when I remove the header.

my code is:

with header

sage: html.table([("A","B","C","D")],[(k,j,find_minimum_on_interval(Vp(r, 1, 0.33, k/10, 1, (2*j)/10),0,5,tol=0.0000000003, maxfun=500)[0] ,find_minimum_on_interval(Vp(r, 1, 0.33, k/10, 1, (2*j)/10),0,5,tol=0.0000000003, maxfun=500)[1]) for k in [1..2] for j in [1..2] ])

without header

sage: html.table([(k,j,find_minimum_on_interval(Vp(r, 1, 0.33, k/10, 1, (2*j)/10),0,5,tol=0.0000000003, maxfun=500)[0] ,find_minimum_on_interval(Vp(r, 1, 0.33, k/10, 1, (2*j)/10),0,5,tol=0.0000000003, maxfun=500)[1]) for k in [1..2] for j in [1..2] ])

thank