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

  Determine the stability status for the digital system

Sketch the z-plane pole-zero plot and determine the stability status for the following digital system.

  Design and explain a computer-based simulation model

Design and explain a computer-based simulation model which you will use to estimate the probability that among 25, 50, 75, 100, 500, or 1000 randomly chosen people, at least 2 people share the same birthday.

  Solve the differential equation

Find a general solution of the following differential equation and solve the differential equation

  Fit the exponential function to the relaxation data

Fit the exponential function to the relaxation data and report the filename as well as the A, tau and B values and run all 3 functions in sequence to analyze ALL data

  Compute the economy sized svd

Compute the economy sized SVD of the reshaped A matrix.

  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.

  Boundary conditions for the finite element model

The computer program or the finite element model for one value of a and the excel file for finite element results processing;Boundary conditions for the finite element model

  Simulate rigid body mechanics

Write a MATLAB code to simulate rigid body mechanics. Create a video file of a free falling rod. Neglect effects from drag or loss of kinetic energy. Make sure the rod falls onto one end showing how the rigid body reacts to hitting the ground. Cannot..

  Implement the finite difference method

Write a computer program to implement the finite difference method. The program can be in any computer language that is available within the school. Set up the code to find the potential for a parallel plate capacitor in the box shown below, all dime..

  Open a named pipe and to read data from the pipe

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

  Create functions in file

Create Functions in File and how to code this function - Declare function inputs, and outputs

  Pattern recognition

Research and discover more in-depth knowledge about topics in Pattern Recognition and choose a topic. The best topic will be the one you are most interested in or a topic from your research project you are working on.

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