First time here? Check out the FAQ!

Ask Your Question
1

Plotting in base n?

asked 4 years ago

nooniensoong97 gravatar image

In sagemath is there a way to represent plots in bases other then base10? If at all possible being able to plot from base2 to base36.

Preview: (hide)

Comments

Please provide an example of plot you would like to do.

slelievre gravatar imageslelievre ( 4 years ago )

Say I would like to use list_plot for a list of prime numbers in a base other then base10.

nooniensoong97 gravatar imagenooniensoong97 ( 4 years ago )

Try exploring the optional arguments ticks, tick_labels, tick_formatter of graphics objects.

slelievre gravatar imageslelievre ( 4 years ago )

So the program isn't designed to actually do any processing in other bases, and the only way is to format the plot to represent the said data as the intended base.

nooniensoong97 gravatar imagenooniensoong97 ( 4 years ago )

1 Answer

Sort by » oldest newest most voted
0

answered 4 years ago

slelievre gravatar image

Internally computers work in base 2. Many humans are used to base 10.

Programming languages and computer algebra systems take that into account.

Typically they accept input in base 10, work on it in base 2, and display results in base 10.

In some cases one wants to use other bases. There are various levels of support for that.

It's not common enough that plotting functions have dedicated flags, but they often offer ways to tweak the display.

In matplotlib and in Sage, see ticks, tick_labels, tick_formatter.

Preview: (hide)
link

Comments

I was expecting that this program would be designed to have full support for any bases from base 2 to base 36. I guess maybe a possible add on in future updates? Also looks like the ticks, tick_labels, and tick_format only works on plot function. I tried it on list_plot and got an error.

nooniensoong97 gravatar imagenooniensoong97 ( 4 years ago )

Not clear to me what "full support" could mean. Or what the concrete question is.

Or what would be an example of something you would like to work but does not work.

slelievre gravatar imageslelievre ( 4 years ago )

I am referring the program being able to switch to any base to process any calculations. For example, I might want to do all my calculations in base 8, and be able to also have the plots in base 8.

nooniensoong97 gravatar imagenooniensoong97 ( 4 years ago )

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: 4 years ago

Seen: 361 times

Last updated: Oct 12 '20