How to perform summation of the given equation?

2 views (last 30 days)
k(z)=(15/2)*(H-z)*(sin30)dz
H=10;
variable is Z with limit 0 to 10

Accepted Answer

Star Strider
Star Strider on 29 Oct 2022
The ‘dz’ may mean the function is an integrand —
syms z
H = sym(10);
k(z)=(15/2)*(H-z)*(sin(30));
K = int(k, z, 0, 10)
K = 
K = vpa(K, 10)
K = 
.

More Answers (0)

Categories

Find more on Mathematics in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!