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 Solvers99
Suggested Problems
-
middleAsColumn: Return all but first and last element as a column vector
651 Solvers
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
14088 Solvers
-
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
601 Solvers
-
Replace Nonzero Numbers with 1
447 Solvers
-
378 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