Reynolds number, FalsePosition getting multiple errors with no output

조회 수: 1 (최근 30일)
Anastasia Zistatsis
Anastasia Zistatsis 2021년 1월 23일
I am to create a function that uses FalsePosition (function shown below) to solve for f in the given equation. I think I'm missing some connections between my script and the function I'm trying to call.
Here is FalsePosition
This is my code:
function [root, fx, ea, iter] = falsepositionnew(y)
xl = 2500;
xu = 1000000;
es = 0.0000001;
maxit = 200;
Re = 10000:200000;
y = @(f, Re) 1/sqrt(f) - 4*log(Re*sqrt(f))+0.4; %equation given
for = i:numel(Re)
f(i) = falseposition(y,xl,xu,es,maxit);
end

답변 (0개)

카테고리

Help CenterFile Exchange에서 Statics and Dynamics에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by