python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Exponential value plotting in Python
I have a list of exponential value, and I would like to plot in Python the distribution. How can Ido it to be significant and with sense?
My value are like this list:
[0.0, 1.05e-84, 1.05e-84, 1.05e-8...

Chiara
Votes: 0
Answers: 1
Matrix power without Numpy for 3x3 Matrix
I am trying to calculate Matrix raised to power 'n' without using Numpy for a 3x3 matrix (without using any library functions)
Here is the code that I have written so far:
def matmul(M1, M2):
...
Dext1232
Votes: 0
Answers: 2
Fitting Data w/ Curve Fit Then Find Out if Data is above / below curve fit
I generated an exponential curve fit for the proxy data below. After fitting the model to the data, I need to determine if another sample second sample, row by row, is above or below the fit line. Whe...

Starbucks
Votes: 0
Answers: 1
Exponential-Golomb Decoder in Python (Codewars)
I am trying to pass one of the Codewars challenge ,,Exponential-Golomb Decoder" here: https://www.codewars.com/kata/5e4d8a53b499e20016b018a0/swift
The idea is to take input in binary format:"...
Remotay
Votes: 0
Answers: 1