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)
Find cube root in C
I am trying to find cube root of the volume and it does not work well. I think there is a problem with the floating point but do not know how to fix it. As you can see cube root should be 3 not 37
#in...
Nam
Votes: 0
Answers: 1
How to solve this complicated non-linear function?
The code is giving the same output as my guess value in fsolve function
import numpy as np
import math
from scipy.optimize import fsolve
def f(y):
a11 = 17.20
iv_y = np.sqrt(pi)*np.sqrt(y)*np...
peenin--
Votes: 0
Answers: 1
How to find cubic root without using any loop or conditional statement
I am finding a way to find a cubic root without using any loop or conditional statement. I am currently learning C that learnt basic operator and bits. Professor told me that there is a way to find cu...
Nam
Votes: 0
Answers: 1
How to update the system app by itself with android 9 and above
I've a device with root access. Here is a system app with a function allow the system app can update by itself. It works on Android 4, but fail on Android 9. The new apk file can be copy to /system/ap...
Huang Chun Hao
Votes: 0
Answers: 1