From the Page Layout tab, click Margins. Select Custom Margins... from the drop-down menu. Selecting Custom Margins...
The Page Setup dialog box will appear.
Adjust the values for each margin, then click OK. The Page Setup dialog box.
The margins of the document will be changed
Answer:
select all images
Go to the pictures tool format tab
Choose the arrange group
Choose the group Option
Explanation:
Answer:
t = [0:0.01:4];
x = 5*t - 10;
y = 25442 - 120*t + 144;
d = x.^2 + y.^2;
min = 1e+14;
for k = 1:length(t)
if d(k) < min
min = da(k);
tmin = t(k);
end
end
disp('The minimum distance is: ')
disp(sqrt(min))
disp('and it occurs at t = ')
disp(tmin)Output:
>> withLoop
The minimum distance is:
2.5106e+04
and it occurs at t =
4
Explanation: