How to perform summation of the given equation?
2 views (last 30 days)
Show older comments
k(z)=(15/2)*(H-z)*(sin30)dz
H=10;
variable is Z with limit 0 to 10
1 Comment
Accepted Answer
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 = vpa(K, 10)
.
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!