A four bar mechanism is composed of four links. if s is the smallest link, l the longest and p,q are the length of the other links. Grashof states that, in order that one of the link is a crank we have to satisfy s+l <= p+q
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers100
Suggested Problems
-
6106 Solvers
-
Project Euler: Problem 3, Largest prime factor
1821 Solvers
-
951 Solvers
-
Set the array elements whose value is 13 to 0
1458 Solvers
-
Flip the vector from right to left
11429 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
function y = Grashof(x)
s=min(x)
l=max(x)
if (s+l)<=()
y = true
else
y = false
end
end is what I have but I cannot find out how to get p or q from this vector