finding the length of a pendulum in motion
Show older comments
When i write the following code, for count = 1:nFrames lab = bwlabel(seg_pend(:, :, count)); property = regionprops(lab, 'Centroid'); pend_centers(count, :) = property.Centroid; end i get an error of "too many outputs requested" how can i correct it?
Accepted Answer
More Answers (1)
Walter Roberson
on 9 Feb 2011
0 votes
You shouldn't try to measure the length of a pendulum in motion. The bottom tip is moving so much faster than the anchor point that you need to take in to account relativistic contraction, but you can't, because you cannot simultaneously measure the position and the velocity (Heisenberg). It is thus advisable to instead wait until the pendulum reaches to top of its arch and thus has a velocity of 0, as you would not need any relativistic correction for the length then.
Categories
Find more on Geometric Transformation and Image Registration in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!