Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
62 views

Pseudocode: DistanceToMove = distanceToMove*decayFactor; xPos = xPos + distanceToMove; I am attempting to have a screen element begin at a specific place and go to a final position at a decreasing ...
Michael Way's user avatar
2 votes
1 answer
133 views

I am trying to fit exponential to my data in r to get regression parameters. I would appreciate if you could please help me with. I have tried nls() and didn't work, tried different datasets as well. ...
Mee's user avatar
  • 321
2 votes
1 answer
111 views

I am using self-starting functions to estimate the best constants for my models in R software. But it does not allow me to constrain my offset (y=100, x=0) to be 100. The two component exponential ...
Ka Am's user avatar
  • 21
1 vote
1 answer
58 views

I implemented a linear function for a search algorithm, that boosts a document according to its time since upload. So the newer a document the more likely it will be presented for a given search term. ...
z00mable's user avatar
  • 316
1 vote
1 answer
84 views

I am trying to apply a exponential regression on the given data frame : df <- structure(list(Type_stat = c("Vitesse_min", "Vitesse_max", "Vitesse_min", "...
C. Guff's user avatar
  • 410
1 vote
2 answers
113 views

I'd like to sample from a well-defined population of super-exponential size with uniform probability among the population. For example, say the population is the set of unique permutations of ...
obviouslyalive's user avatar
1 vote
1 answer
104 views

This is my data: [[1.0183786345931547, 1.0299586760768078, 1.038641346963767, 1.0450398412805133, 1.194598528164483], [1.0498980141678536, 1.0740481275807727, 1.101990429736493, 1.1528998376687427, 1....
Ladislav Révay's user avatar
3 votes
2 answers
145 views

If I generate a vector of values, some of which are negative: d <- rnorm(1000, 4, 10) z <- sapply(d, function(x) x^1.2) z will contain a mix of real values and NaNs. Any values that were ...
Union find's user avatar
  • 8,270
-1 votes
2 answers
601 views

I have problem related to curve_fit in Python. Specifically, I am trying to model double exponential data. I am trying to model data. The fits are good by the eye, but when I look at the parameters ...
time_invarient 's user avatar
-4 votes
1 answer
512 views

I have an entity class(Account) wherein I have the following property @Column(name = "balance", precision = 10, scale = 10, nullable = false) Double balance; Then in one of my spring ...
nickgkd's user avatar
  • 57
0 votes
0 answers
63 views

`Can anyone help me to code this constraint in Cplex opl . It seems to be nonlinear constraint but I do not know how to convert to linear constraint correctly:"enter image description here l_jt_y[...
Diem Nguyen's user avatar
-1 votes
1 answer
87 views

I am trying to calculate r at a specific time, or f(t_max). I am using a scale from 0 to 255. So I am trying to calculate the correct rate value for exponential growth at t_max = 255, with an initial ...
jbadon's user avatar
  • 1
3 votes
1 answer
125 views

I have a large sparse matrix (dgCMatrix) in R, and I would like to have the exponential of each element of this matrix. More precisely, I would like to do 1-exp(-x) to each element of the matrix. ...
sebastien1785's user avatar
0 votes
1 answer
624 views

I need to apply curve fitting (look at the graph). However, I am struggling to find the initial parameters based on a visual (looking at the plot). So how do I now which value to pick for a, b or c. ...
Magdalena Rodríguez's user avatar
0 votes
1 answer
424 views

I need to calculate the matrix exponential (https://en.wikipedia.org/wiki/Matrix_exponential) for matrices of size upto 1000*1000. As of now, in python, scipy.linalg.expm (https://docs.scipy.org/doc/...
evening silver fox's user avatar
0 votes
2 answers
216 views

Asking here is my last resort, I do not know where else to look or what my next option would be, apart from changing languages. I have a set of 3 heavy exponential equations, with 3 variables. All ...
nparadina's user avatar
2 votes
0 answers
822 views

I am not very proficient in R, and I have stumbled upon an obstacle when using ggplot2. I have a plot with large numbers on both the x and y axis of the plot. Since I am dealing with large numbers, ...
Rnewb's user avatar
  • 21
1 vote
1 answer
60 views

I have two variables that I'm trying to model the relationship between and extract the residuals. The relationship between the two variables is clearly a non-linear exponential relationship. I've ...
tnt's user avatar
  • 1,527
0 votes
1 answer
105 views

I'm still trying to get exponential curve lines on my data. I'm having abundance values in function of time and I want to apply and exponential regression on the first points. I've found a package ...
Marlexis's user avatar
1 vote
1 answer
799 views

I have the following pandas.core.series.Series: x=pd.Series([17.39, 8.70, 2.90, 1.45, 1.45]) for t=0,1,2,3,4. When I try x.ewm(span=2).mean() I get the following results: 17.39, 10.87, 5.35, 2.71, 1....
Telis's user avatar
  • 362
-4 votes
2 answers
127 views

I converted these two equations into MATLAB code before but I lost the file and now I am trying to write them again but there is a problem and I can't figure it out. This is the main equation: This ...
shammas mohamed's user avatar
0 votes
1 answer
38 views

(Solved, however I would love to know WHY this happens.) So,I have this script which should make a huge block of "brick" parts. The idea was for something like breaking them in some way (...
Link_jon's user avatar
1 vote
2 answers
858 views

I am fairly new to python, while I have used matlab quite a bit before. Currently I am trying to do an exponential curve fit to a semi logarithmic plot. Down below is the code I've currently got. ...
JonasDenmark's user avatar
0 votes
1 answer
221 views

I am working with concentration over time data. The intent is to find a model for the decay rate of the phenol content of algae over time. Not much info is available on the literature about the shape ...
Vero Rodriguez-j's user avatar
0 votes
0 answers
457 views

I am inserting some data from python to sql server. In the dataframe, the data looks ok. However after inserting into sql table, the number converts to some exponential expression. I tried to convert ...
Sriram 's user avatar
  • 453

1
2 3 4 5
18