I am using Apache Commons Math to solve equations in linear algebra. By default it uses base-10 numeric system. But I want to use base-3 system. Is there an API for doing it? Or should I use a different library?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Eh? I’m not sure this question makes sense.
int,double, and the like are all independent of base systems. It’s only when you do input/output, and convert to/fromString, that the base matters.…So basically, just use Apache like you would normally, and just output the results in base 3…?