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

  Z-transform in matlab

Z-Transform in MATLAB, Sketch the z-plane pole-zero plot and determine the stability status for the following digital system. Determine the h(n) in MatLab.

  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

  Linear support vector machine svm

Write a computer program to prepare a Linear Support Vector Machine SVM.

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

  Plot the pressure surface versus latitude and longitude

Plot the pressure surface versus latitude and longitude as a surface plot

  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.

  Give the gradient operator in paraboloidal coordinates

Given that the le data.txt contains only real numbers seperated by white space, write down a sequence of maple commands that will read the data into a maple list and then plot a histogram of the elements in the list.

  Write a functions

The function range basis takes a matrix A as input, and outputs a basis (again written as columns) for the range space of A.

  Lagrange interpolating polynomial of degree

Lagrange interpolating polynomial of degree

  Design and fir filter in matlab

What does the pole-zero diagram tells you about the filter

  Mat lab programming problem

In case the problem in the code I want you to modify it give the correct temperature.

  Compute the economy sized svd

Compute the economy sized SVD of the reshaped A matrix.

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