cubic Questions
5
Solved
As part of a program I'm writing, I need to solve a cubic equation exactly (rather than using a numerical root finder):
a*x**3 + b*x**2 + c*x + d = 0.
I'm trying to use the equations from here. ...
3
Solved
I wrote the following code to perform a spline interpolation:
import numpy as np
import scipy as sp
x1 = [1., 0.88, 0.67, 0.50, 0.35, 0.27, 0.18, 0.11, 0.08, 0.04, 0.04, 0.02]
y1 = [0., 13.99, 27...
Seiber asked 7/8, 2012 at 18:18
4
I was using one of the proposed algorithms out there but the results are very bad.
I implemented the wiki algorithm
in Java (code below). x(0) is points.get(0), y(0) is values[points.get(0)], α ...
Wallaby asked 30/11, 2013 at 17:13
2
Solved
I have apache server running on Ubuntu. Client connects and downloads an image. I need to extract RTT estimations for the underlying TCP connection. Is there a way to do this? Maybe something like ...
Languish asked 20/1, 2016 at 18:25
5
I need a method that allows me to find the Y-coordinate on a Cubic Bezier Curve, given an x-coordinate.
I've come across lots of places telling me to treat it as a cubic function then attempt to f...
2
Solved
Based on the following resources, I have been trying to get resolution independent cubic bezier rendering on the GPU to work:
GPU Gems 3 Chapter 25
Curvy Blues
Resolution Independent Curve Rende...
Greatcoat asked 20/3, 2013 at 9:2
1
Solved
Here is the thing.
I am trying to use fsolve function in Python to find the root of a cubic function. This cubic function has a parameter, deltaW. What I do is change this parameter deltaW from -5...
2
Solved
I'm having the worst time trying to find a JavaScript code that could allow me to do cubic regressions. Would write it myself, but my understanding of polynomial math is, well, suboptimal.
So, her...
Centre asked 11/3, 2014 at 8:1
4
Solved
I'm implementing cubic bezier curve logic in my one of Android Application.
I've implemented cubic bezier curve code on canvas in onDraw of custom view.
// Path to draw cubic bezier curve
Path cu...
Sportscast asked 17/4, 2013 at 7:3
1
Solved
3
Solved
I need to find good approximations of the points where an undefined function intersect a threshold value. I'm stepping through my space and whenever I find that two subsequent steps are on di...
Pressroom asked 20/9, 2009 at 19:48
1
© 2022 - 2024 — McMap. All rights reserved.