plot the doors angular velocity as a function of height on M
plot the doors angular velocity as a function of height on Matlab
Solution
% define an array of values for k h and s k = 0:0.01:33.33; h = 6:0.01:0; s = 0:0.01:6; % create a meshgrid [Kmesh,Hmesh,Smesh] = meshgrid(k,h,s); % compute the function value at the meshgrid points f = (200*Hmesh)/(Kmesh*Smesh); % launch sliceomatic sliceomatic(f,k,h,s)