Groups | Search | Server Info | Login | Register


Groups > comp.soft-sys.math.maple > #1381

How can I see multiple results in a Jupyter notebook?

Newsgroups comp.soft-sys.math.maple
Date 2023-04-30 03:24 -0700
Message-ID <34936c4d-2c2e-4322-b880-71246ebec4f6n@googlegroups.com> (permalink)
Subject How can I see multiple results in a Jupyter notebook?
From "peter....@gmail.com" <peter.luschny@gmail.com>

Show all headers | View raw


I already addressed the topic in the last post, but apparently it is not directly connected with "print". So how do I see the output of these lines?

egf := (1 + x*exp(x*z + z))/(x + 1);
c := n -> normal(n!*coeff(series(egf, z, 9), z, n));
for n from 0 to 6 do
    seq(coeff(c(n), x, k), k = 0 .. n);
end do;

What I expect is:
                               1
                              0, 1
                            0, 1, 1
                           0, 1, 2, 1
                         0, 1, 3, 3, 1
                        0, 1, 4, 6, 4, 1
                     0, 1, 5, 10, 10, 5, 1

What I get is:
                     0, 1, 5, 10, 10, 5, 1

This is just unreal!

Back to comp.soft-sys.math.maple | Previous | NextNext in thread | Find similar


Thread

How can I see multiple results in a Jupyter notebook? "peter....@gmail.com" <peter.luschny@gmail.com> - 2023-04-30 03:24 -0700
  Re: How can I see multiple results in a Jupyter notebook? Rainer Rosenthal <r.rosenthal@web.de> - 2023-04-30 15:57 +0200
    Re: How can I see multiple results in a Jupyter notebook? "peter....@gmail.com" <peter.luschny@gmail.com> - 2023-04-30 07:24 -0700
      Re: How can I see multiple results in a Jupyter notebook? Rainer Rosenthal <r.rosenthal@web.de> - 2023-04-30 19:08 +0200

csiph-web