python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How do I convert an abbreviated integer into an integer, in a string, in Java?
I have the following string as my input:
(100m/10k) * 10k
where
m = 1,000,000
k = 1,000
I expect an output of
(100000000/10000) * 10000
I'm having a difficult time figuring out how to replace the a...
uploak
Votes: 0
Answers: 0
SympifyError: SympifyError: index when using a loop
I am having trouble using simpify when changing the parameters in a loop. Before adding the loop it worked just fine so I am a bit confused about what is going wrong. The idea is to calculate the fixe...
Johanna
Votes: 0
Answers: 2
iterating matlab symbolic solve function
I am trying to solve the equation below for array d. I have used the snippet below:
channel_size = 9e-3;
d = [11e-3, 12e-3];
sigma = 0.49;
ee = 727/9806.65;
alpha = d-channel_size;
sym('p',[1 2])
f...
Johnny
Votes: 0
Answers: 1
numpy.linalg.solve for Decimal in Python
Is there any way how to solve equations when a matrix A and a vector b is composed of decimal.Decimals?
My A:
array([[Decimal('-5266125828.168885444558615257'),
Decimal('11312418445.6961242883...
Dominik Bolerác
Votes: 0
Answers: 1