About 30,700 results
Open links in new tab
  1. fzero - Root of nonlinear function - MATLAB - MathWorks

    fun = @f; % function x0 = 2; % initial point z = fzero(fun,x0) z = 2.0946 Since f(x) is a polynomial, you can find the same real zero, and a complex conjugate pair of zeros, using the roots command.

  2. tf2zp - Convert transfer function filter parameters to zero-pole-gain ...

    This MATLAB function finds the matrix of zeros z, the vector of poles p, and the associated vector of gains k from the transfer function parameters b and a.

  3. find - Find indices and values of nonzero elements - MATLAB

    Avoid function calls like X(find(X<5)), which unnecessarily use find on a logical matrix. When you execute find with a relational operation like X>1, it is important to remember that the result of the …

  4. How to find zeros of a function? - MATLAB Answers - MathWorks

    Dec 17, 2018 · But I want to know how to use matlab to find zeros of a function y = f (x) when x is a matrix defined by the user like the above case.

  5. roots - Polynomial roots - MATLAB - MathWorks

    Tips Use the poly function to obtain a polynomial from its roots: p = poly(r). The poly function is the inverse of the roots function. Use the fzero function to find the roots of nonlinear equations. While the …

  6. poles - Poles of expression or function - MATLAB - MathWorks

    This MATLAB function finds the poles of f with respect to variable var.

  7. Pole and Zero Locations - MATLAB & Simulink - MathWorks

    This example shows how to examine the pole and zero locations of dynamic systems both graphically using pzplot and numerically using pole and zero. Examining the pole and zero locations can be …

  8. find a zero of a two-variable function - MathWorks

    Apr 20, 2024 · Yes. then you are NOT looking to find a zero of the function, but its MINIMUM value. That is simply achieved using one of many tools, perhaps fminsearch, perhaps fminunc, or fmincon, or …

  9. zero - Zeros and gain of SISO dynamic system - MATLAB

    This MATLAB function returns the zeros of the single-input, single-output (SISO) dynamic system model, sys.

  10. Finding the zeros of a function - MATLAB Answers - MathWorks

    Oct 8, 2013 · As an alternative, one could simply sample the function at a fine interval, looking for any sign changes. Then call fzero on each interval where a sign change was found.