Engineering 1181

Get Started. It's Free
or sign up with your email address
Engineering 1181 by Mind Map: Engineering 1181

1. Engineering Basics

1.1. Teamwork

1.1.1. Working with a team increases productivity and group ability, overall beneficial.

1.2. Ethics

1.2.1. COAM/Academic Integrity

1.2.2. Types:

1.2.2.1. Utilitarian

1.2.2.2. Rights

1.2.2.3. Virtue

1.2.2.4. Fairness/Justice

1.2.2.5. Common Good

1.2.3. NSPE Code of Ethics

1.2.4. Dilemmas

1.2.4.1. Points of Conflict

1.2.4.2. Protagonist

1.2.4.3. Stakeholders

1.2.4.4. Obligations

1.2.4.5. Courses of Action

1.2.4.6. Consequences

1.3. Problem Solving

1.3.1. DR. PIE

2. MATLAB

2.1. Basics: Uses

2.1.1. Simulate Engineering Problems

2.1.2. Model Real-world Situations

2.1.3. Analyze Data

2.1.4. Create Representations of Results

2.2. Data Analysis

2.2.1. Arrays

2.2.1.1. Vectors

2.2.1.2. Matrices

2.2.2. Commands

2.2.2.1. Built in Functions

2.2.2.2. load

2.2.2.3. plot()/figure()

2.3. Conditional Statements/User Input

2.3.1. Conditional Statements

2.3.1.1. if

2.3.1.2. if-else

2.3.1.3. if-elseif

2.3.2. input()

2.3.3. Relational and Logical Operators

2.3.4. Strings and Character Arrays

2.4. Array Indexing and For Loops

2.4.1. Indexing

2.4.1.1. Starts at 1

2.4.1.2. Many ways to create arrays

2.4.1.3. Colon Operator

2.4.2. For Loops

2.4.2.1. Stop after a set number of passes

2.4.2.2. for k = values

2.4.2.3. Can be used to create arrays

2.4.2.4. Can be used with conditionals

2.5. While Loops and Functions

2.5.1. While Loops

2.5.1.1. while conditional statement

2.5.1.2. Could loop infinitely: Use Ctrl C

2.5.2. Functions

2.5.2.1. input>functionname>output

2.5.2.2. function[out1, out2] = functionname(in1, in2)

2.5.2.3. Why Use?

2.5.2.3.1. Re-usability

2.5.2.3.2. Abstraction

2.5.2.3.3. Coordination between Users

3. Excel

3.1. Basics

3.1.1. Cell Referencing

3.1.1.1. Absolute

3.1.1.2. Relative

3.1.1.3. Mixed

3.1.2. Basic Functions

3.1.2.1. =

3.1.2.2. Order of Precedence

3.1.3. Common Errors

3.1.3.1. ####

3.1.3.2. #DIV/0!

3.1.3.3. #NUM!

3.1.3.4. #REF!

3.1.3.5. #VALUE!

3.1.4. Graphing:

3.1.4.1. Highlight Data

3.1.4.1.1. Insert

3.1.4.2. Good Graphing Practices

3.2. Data Analysis

3.2.1. Accuracy

3.2.2. Precision

3.2.3. Variation

3.2.3.1. Systemic

3.2.3.2. Random

3.2.4. Define:

3.2.4.1. Mean

3.2.4.1.1. =AVERAGE

3.2.4.2. Median

3.2.4.2.1. =MEDIAN

3.2.4.3. Mode

3.2.4.3.1. =MODE

3.2.4.4. Standard Deviation

3.2.4.4.1. =STDEV

3.3. Program Design

3.3.1. Algorithms

3.3.2. Flow Charts