Answered step by step
Verified Expert Solution
Question
1 Approved Answer
what is this missing to be a solution to problem 1 clc; clear; sigmasf = 14; eps = 0.5; ta1 = 273; ta2 = 305;
what is this missing to be a solution to problem 1 clc; clear; sigmasf = 14; eps = 0.5; ta1 = 273; ta2 = 305; error = inf; xr = ta1; counter = 0; fx = @(ta) -139.34411 + ((1.575701*10^5)/ta) - ((6.642308*10^7)/ta^2) + ((1.243800*10^10)/ta^3) - ((8.621949*10^11)/ta^4) - log; while abs(error) >= eps previous = xr; if fx(ta1) * fx(xr) <= 0 ta2 = xr; else ta1 = xr; end error = abs(xr - previous); counter = counter + 1; end fprintf('There were %g iterations, and the root is %g ', counter, xr - 273)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started