Answer:
%Program prompts user to input vector
v = input('Enter the input vector: ');
%Program shows the value that user entered
fprintf('The input vector:\n ')
disp(v)
%Loop for checking all array elements
for i = 1 : length(v)
%check if the element is a positive number
if v(i) > 0
%double the element
v(i) = v(i) * 2;
%else the element is negative number.
else
%triple the element
v(i) = v(i) * 3;
end
end
%display the modified vector
fprintf('The modified vector:\n ')
disp(v)
Answer:
Plans; blueprints.
Explanation:
In Engineering, it is a common and standard practice to use drawings and models in the design and development of various tools or systems that are being used for proffering solutions to specific problems in different fields such as engineering, medicine, telecommunications and industries.
Hence, a design engineer make use of drawings such as pictorial drawings, sketches, or technical drawing to communicate ideas about a design to others, to record and retain informations (ideas) so that they're not forgotten and to analyze how different components of a design work together.
Technical drawing is mainly implemented with CAD (computer-aided design) software and is typically used in plans and blueprints that show how to construct an object.
Additionally, technical drawings show in detail how the pieces of something (object) relate to each other, as well as accurately illustrating the actual (true) shape and size of an object in the design and development process.
Answer:
The lunar radiation environment, allowing scientists to determine potential impacts to astronauts and other life. It also will test models on the effects of radiation and measure radiation absorption by a type of plastic that is like human tissue. The results could aid in the development of protective technologies to help keep future lunar crew members safe. CRaTER was built and developed by Boston University and the Massachusetts Institute of Technology in Boston.
dude thx for the points lol