Problem 44084. Determine if a four bar mechanism is of Grashof type
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
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
Solution Comments
Show commentsProblem Recent Solvers76
Suggested Problems
-
Determine Whether an array is empty
780 Solvers
-
Given a window, how many subsets of a vector sum positive
856 Solvers
-
Unique values without using UNIQUE function
364 Solvers
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
11794 Solvers
-
Let's get back to school, and create multiplication tables
214 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!