BME1004 - Lab 1

pdf

School

Worcester Polytechnic Institute *

*We aren’t endorsed by this school

Course

3811

Subject

Mechanical Engineering

Date

Dec 6, 2023

Type

pdf

Pages

4

Uploaded by serenakdalo

Report
Victoria Grasso Prof. Afzal BME 1004 17 January 2024 Lab 1 Question No. 1: What do the following commands do when executed from the command window? What is the effect of these commands on the workspace? [7 points] Note: Before executing each command declare a variable named 'var' and assign it a value of 0. You can use the help function to learn more about these commands. For example, the command 'help clc' will give you detailed information about the 'clc' command. Clc: Clears the command window, but workspace stays the same. Clear: Clears the workspace, the command window remains the same. Diary: keeps a copy of the command window, does not affect workspace. Exit: Kicks you out of matlab and clears both windows when you open it back up/ Who: Tells you the names of your variables within the command window. Workspace stays the same. Whos: Gives you the name, size, bytes and class of your variables. Workspace remains the same. Question No. 2: Define the following variables using the command window. [3 points] A variable named 'firstName' and assign the value as your full name. A variable named 'institute' and assign the value 'WPI'. A variable named 'courseCode' and assign a value of 1004. Note: 1004 should be a number.
Question No. 3: Define a variable named 'a' and assign it a value of 10. Check the workspace to verify that the value of a is 10. [4 points] Now define a variable 'b' and assign it a value of 15. Next, write the command a=b in the command window. Check the workspace and note the value of a. Is it 10 or 15? Why has the value changed? Can you get the previous value of 'a' back? The value of a has changed because we have added b which equals 15 after we added a. We then wrote that a=b, so a will become the value of b since b is the bigger number. We cannot get the previous value of a back without using the command ‘clc’ to clear the command window and re-assign the value of a as 10.
Question No. 4: Challenge activity. Swapping variables. [6 points] Clear the workspace and your command window Declare a variable 'a' and assign it a value of 5 Declare a variable 'b' and assign it a value of 15. Come up with a strategy to swap the values of 'a' and 'b' such that 'a' is assigned the value of 'b' and 'b' is assigned the value of 'a'.
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help