Find the flow rate (m^3/s) in a pipe that has a radius of r in cm, velocity of v (m/s) and round the flow rate to 4 decimal places.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers52
Suggested Problems
-
Find the two most distant points
2959 Solvers
-
Sum all integers from 1 to 2^n
18077 Solvers
-
Who is the smartest MATLAB programmer?
793 Solvers
-
674 Solvers
-
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
604 Solvers
More from this Author4
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Not sure what I did wrong?
function y = flow_rate(r,v)
y = (v*pi*(r^2))*(10^-4)
round(y,4)
end