Matlab: create a function that will use the secant method

Assignment Help MATLAB Programming
Reference no: EM13160139

MATLAB: Create a function that will use the Secant method to try to find a root by modifying the False Position method function written bellow. Because this method may diverge, you should limit the number of time the loop repeats.

function [fproot,zeroerror] = falsepos(func, low, high, accepterror)
% function to find the root of an equation using false position method and
% two guesses.
% input: function, low value for a guess, high value for a guess, and
% acceptable error for root.
% output: The root or an empty matrixif the root is not found.
% processing: Find a possibility for the root by creating a line between
% low value high value. New possibility is where the line
% intersects the x-axis. New possibility may be calculated by
% the equation
% xnew = xhigh - ((f(xhigh)(xlow -xhigh))/(f(xlow) - f(xhigh))
% Then f(xnew) will be calculated. If f(xnew) is equal to 0,
% set root to xnew and set logical variable to false.
% Otherwise compare the sign of f(xnew) is the same as the
% sign of low. If it the same, then set low to xnew,
% set high to xnew. Repeat until root is found or difference
% between xlow and xhigh is less than 0.0000001.

notfound = true;
diff = abs(high - low);
fproot =[];
while (notfound & diff > 0.00000001 )
flow = func(low);
fhigh = func(high);
xnew = high - ((fhigh)*(low - high))/(flow - fhigh);
fnew = func(xnew);
if abs(fnew) < accepterror
fproot = xnew;
notfound = false;
zeroerror = fnew;
elseif sign(fnew) == sign(flow)
low = xnew;
else
high = xnew;
end
diff = abs(high - low);

end

if notfound
disp('No roots were found in this range!')
disp('Try again with new guesses')
end

 

 

Reference no: EM13160139

Questions Cloud

What is the opportunity cost of producing more units : If a country is currently producing 11 units of health care and 16 units of education, what is the opportunity cost of producing 5 more units of education?
State what occurs at the molecular level of an extraction : What occurs at the molecular level of an extraction? We did an extraction of benzoic acid using NaOH and diethyl ether dried to 1, 4-dimethoxybenzoate using NaOh
Factory overhead applied to production : During the period, labor costs incurred on account amounted to $250,000 including $200,000 for production orders and $50,000 for general factory use. In addition, factory overhead applied to production was $23,000. From the following, select the e..
What is the ph : A volume of 25.0 mL of 0.100 M HCO2H(aq) is titrated with 0.100 M NaOH(aq). What is the pH after the addition of 12.5 mL of NaOH? (Ka for HCO2H = 1.8 × 10-4)
Matlab: create a function that will use the secant method : MATLAB: Create a function that will use the Secant method
Which would be most abundant : Niremberg used the enzyme polynucleotide phosphorylase to assembleRNAs with random sequences in the absence of a template. Supposethey added the enzyme to a solution of 90%CTP and 10%UTP, and thenused a cell-free system of protein synthesis to mak..
C program that compare the time required : Write a C program that compare the time required to compute the product of two 10,000 x 10,000 matrices with and without optimization for locality.
Gain on the sale of investments : On the statement of cash flows prepared by the indirect method, a $50,000 gain on the sale of investments would be:
What other changes might you want to make at the same time : Why would a tax credit for mortgage intrest be worth more to lower income families than a deduction? Would you favor changing the benefit from a tac deduction to a tax credit? What other changes might you want to make at the same time? WHY?

Reviews

Write a Review

MATLAB Programming Questions & Answers

  Finite difference method

Use the finite difference method to calculate the temperature at the point specified since it is easier.

  Determine the necessary shell temperature

In a shell-and-tube heat exchanger, one fluid passes through a central tube while another fluid flows through an outer shell in the opposite direction. The purpose is to heat the fluid passing through the central tube.

  Find the integral of a function at an arbitrary location

Write a Matlab function to perform numerical integration of a set of evenly spaced data points using the trapezoidal rule

  Compute the speed of single-stage planetary gear train

Write a MATLAB function [speed] = planetary (N, emesh, first, last, arm) that computes the speed of a given link in a single-stage planetary gear train.

  Calculate and plot the error in the numerical derivative

Write a program to calculate and plot the error in the numerical estimate of the derivative.

  Create the graph using matlab functions

Create the graph, which contains a piecewise function where a line exists in the first interval, a parabola in the second interval, and the sine function in the third interval.

  Develop a simulation program

Develop a simulation program

  Create a vector in matlab

Create a three dimensional diagram of function.

  Open a named pipe and to read data from the pipe

Open a named pipe and to read data from the pipe in matlab

  Write the commands that will create the matrix

Write the commands that will create the matrix.

  Lagrange interpolating polynomial of degree

Lagrange interpolating polynomial of degree

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd