About 165,000 results
Open links in new tab
  1. roots - Polynomial roots - MATLAB - MathWorks

    This MATLAB function returns the roots of the polynomial represented by the coefficients in p as a column vector r.

  2. fzero - Root of nonlinear function - MATLAB - MathWorks

    Root of a Function Defined by a File Find a zero of the function f(x) = x3 – 2x – 5. First, write a file called f.m.

  3. Can "fsolve (scipy)" find many roots of a function?

    Jan 4, 2023 · The plural root s refers to the fact that both scipy.optimize.root and scipy.optimize.fsolve try to find one N-dimensional point x (root) of a multivariate function F: …

  4. Python: Finding multiple roots of nonlinear equation

    6 In general (i.e. unless your function belongs to some specific class) you can't find all the global solutions - these methods usually do local optimization from given starting points.

  5. Finding Roots of a Function - MATLAB Answers - MATLAB Central

    Sep 22, 2018 · If I use fzero to find the roots of a function, in one instance I evaluate when x = 4.2 and get a root of 3.6652. In another instance I evaluate the function at x = 4.3 and get a root of …

  6. Find roots of the equation in R - Stack Overflow

    Feb 23, 2018 · The solution that I found is to use uniroot function. It works if I have function with one parameter of interest, but it does not work in my case, where I have additional parameters …

  7. Finding roots of function in Python - Stack Overflow

    Mar 8, 2016 · Finding roots of function in Python Asked 9 years, 7 months ago Modified 9 years, 7 months ago Viewed 11k times

  8. Find roots of a complex function in python - Stack Overflow

    Nov 16, 2018 · 2 I have a complex function for which I'm trying to find the roots. Have tried using the newton method but it didn't converge because when the x changes by even a small …

  9. matlab - How to find out root of a function - Stack Overflow

    Jan 2, 2017 · The example here used only 9 function evaluations to find (1) the number of roots, and (2) initial estimates for each to about 2 digits accuracy. These numbers only improve for …

  10. Find a root of a function in a given range - Stack Overflow

    Apr 7, 2017 · The problem is, that the two roots converge, as t goes to infinity. (a simple exmple of my functions would be f_t(x) = x^2 - 1/t). So the larger t gets, the more mistakes fsolve makes. …