i don't know how do this, pls help somebody)))

조회 수: 2 (최근 30일)
aldiyar kurmangaliev
aldiyar kurmangaliev 2021년 10월 5일
답변: Walter Roberson 2021년 10월 6일

답변 (2개)

Image Analyst
Image Analyst 2021년 10월 6일
Did you try
d = 10.6
alpha = 50; % Or 1
ctga = whatever????
result = d^3 * ctga * sqrt(sind(alpha)^4 - cosd(alpha)^4);
I have no idea what OTBET means, and what the other a) and 6) numbers (after/below the equation) are for.
  댓글 수: 1
aldiyar kurmangaliev
aldiyar kurmangaliev 2021년 10월 6일
Ответ - this is the result of the example
I have two tasks
a) d= 10.6
a= 50
b)d=e^2.3
a=1
anyway i can't do this work, pls help

댓글을 달려면 로그인하십시오.


Walter Roberson
Walter Roberson 2021년 10월 6일
syms c t g
d = sym(10.6)
d = 
a = sym(50);
eqn18 = d.^3 .* c .* t .* g .* a .* sqrt(sind(a).^4 - cosd(a).^4)
eqn18 = 
vpa(eqn18)
ans = 
Notice that α is given in degrees.
Be careful: the result in eqn18 is going to have units, that include degrees -- unles c, g, t have units that cancel out the degrees.

카테고리

Help CenterFile Exchange에서 Number Theory에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by