x undefined (Catenary Cable Case Study)

1 回表示 (過去 30 日間)
Rean Manuel Clementir
Rean Manuel Clementir 2021 年 3 月 10 日
回答済み: Sargondjani 2021 年 3 月 10 日
Hi, I am hard coding an equation and the result is 'x' is undefined. What would went wrong with this? code below.
function fval = bisectCase2 (x)
fval = (x/12)*cosh((12/x)*(50))+6-(x/12)-15;
end

採用された回答

Sargondjani
Sargondjani 2021 年 3 月 10 日
What you have done is programmed a function. So this function calculates fval when you give a value of x.
You can now call this function by typing in the command prompt:
x=3;
fval = bisectCase2(x);
This will give you fval for x=3; Note that the function should be in the search path (so for example in your current directory).

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFile Operations についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by