About 57,000 results
Open links in new tab
  1. 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.

  2. 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 …

  3. tf2zp - Convert transfer function filter parameters to zero-pole …

    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.

  4. zeros - Create array of all zeros - MATLAB - MathWorks

    This MATLAB function returns the scalar 0.If the size of any dimension is 0, then X is an empty array. If the size of any dimension is negative, then it is treated as 0. Beyond the second …

  5. Find Zeros, Poles, and Gains for CTLE from Transfer Function

    You can use the CTLE Fitter app to fit zeros, poles, and gains from a transfer function to create a GPZ Matrix and then export to your workspace. The CTLE Fitter app finds the GPZ Matrix by …

  6. 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.

  7. 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 …

  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, …

  9. Transfer Functions - MATLAB & Simulink - MathWorks

    Represent transfer functions in terms of numerator and denominator coefficients or zeros, poles, and gain.

  10. Symbolic Toolbox Solving for Zeros - MATLAB Answers - MathWorks

    Dec 15, 2022 · Hey! I've tried a few things but cant seem to get this script to solve for the x values of a functions values. Any ideas? %% function function [zeros] = dPlotInfo(func,range) % …