First time here? Check out the FAQ!

Ask Your Question
2

matrix_plot not returning any outputs in subroutines

asked 3 years ago

user2021 gravatar image
 A=identity_matrix(2)
    def f(n):
        matrix_plot(n*A)
    f(5)

I'm puzzled as the command matrix_plot(5*A) works fine on itself, but it produces no output when it goes inside a subroutine as in the above SageMath code.

I'd appreciate any help with understanding why this is so/resolving this.

PS I have tested this both on http://Sagecell.sagemath.org and a local installation.

Preview: (hide)

Comments

slelievre gravatar imageslelievre ( 3 years ago )

1 Answer

Sort by » oldest newest most voted
3

answered 3 years ago

rburing gravatar image

The reason is the following: the notebook and command line interface, when they are evaluating input, at the end they always output the value of the last line in the input, if it is not None.

So indeed, if you enter matrix_plot(5*A) directly, you get your plot because it is the value of that line.

When you enter f(5), the body of the function is executed as it should be, but this function body does not explicitly return any value, so the default value None is returned, which results in no output.

You probably meant to write:

def f(n):
    return matrix_plot(n*A)

or equivalently

f = lambda n: matrix_plot(n*A)
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 3 years ago

Seen: 217 times

Last updated: Apr 16 '21