s 0Miles (short), 150 Miles(medium), and 300 Miles (long).
Explanation:
Answer:
Mechanical resonance frequency is the frequency of a system to react sharply when the frequency of oscillation is equal to its resonant frequency (natural frequency).
The physical dimension of the silicon is 10kg
Explanation:
Using the formular, Force, F = 1/2π√k/m
At resonance, spring constant, k = mw² ( where w = 2πf), when spring constant, k = centripetal force ( F = mw²r).
Hence, F = 1/2π√mw²/m = f ( f = frequency)
∴ f = F = mg, taking g = 9.8 m/s²
100 Hz = 9.8 m/s² X m
m = 100/9.8 = 10.2kg
Answer:
Explanation gives the answer
Explanation:
% Using MATLAB,
% Matlab file : fieldtovar.m
function varargout = fieldtovar(S)
% function that accepts single structure as input, assigning each
% of the field values to user-defined variables
fields = fieldnames(S); % get the field names of the input structure
% check if number of user-defined variables and number of fields in
% structure are equal
if nargout == length(fields)
% if equal assign each value of structure to user-defined varable
for i=1:nargout
varargout{i} = getfield(S,fields{i});
end
else
% if not equal display an error message
error('The number of output variables does not equal the number of fields');
end
end
%This brings an end to the program