i was writing a equation but this always have an error and i cant run it

4 ビュー (過去 30 日間)
Mostafa Anwar
Mostafa Anwar 2020 年 8 月 4 日
コメント済み: Mostafa Anwar 2020 年 8 月 4 日
y = ((W*S)/(T*T)).*((cosh((a).*(L/2-x)))./(cosh(a*L/2)-1))+(W*x).*(L-x)/(2*T);
T= 1000;
L=10;
W=100;
S=100000; %% this is tha value of E*I
a=0.316;
x=0:0.1:10;
plot(y,x)

採用された回答

KSSV
KSSV 2020 年 8 月 4 日
You should first define the constants and then type the formula.
T= 1000;
L=10;
W=100;
S=100000; %% this is tha value of E*I
a=0.316;
x=0:0.1:10;
y = ((W*S)/(T*T)).*((cosh((a).*(L/2-x)))./(cosh(a*L/2)-1))+(W*x).*(L-x)/(2*T);
plot(x,y)
  1 件のコメント
Mostafa Anwar
Mostafa Anwar 2020 年 8 月 4 日
thank you so much it works, thanks for your time

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

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

タグ

製品


リリース

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by