Matlab code - Study guides, Class notes & Summaries

Looking for the best study guides, study notes and summaries about Matlab code? On this page you'll find 67 study documents about Matlab code.

Page 2 out of 67 results

Sort by

Introduction to the C Programming Language and Software Design COMPLETE STUDY GUIDE
  • Introduction to the C Programming Language and Software Design COMPLETE STUDY GUIDE

  • Exam (elaborations) • 141 pages • 2024
  • Introduction This textbook was written with two primary objectives. The first is to introduce the C programming language. C is a practical and still-current software tool; it remains one of the most popular programming languages in existence, particularly in areas such as embedded systems. C facilitates writing code that is very efficient and powerful and, given the ubiquity of C compilers, can be easily ported to many different platforms. Also, there is an enormous code-base of C programs deve...
    (0)
  • $17.99
  • + learn more
Intro to Python - CMPSC 101 (Exam 1) questions and 100% correct answers
  • Intro to Python - CMPSC 101 (Exam 1) questions and 100% correct answers

  • Exam (elaborations) • 8 pages • 2023
  • Machine language - correct answer 0's and 1's that contain instructions that can be understood by a computer; Compiled language - correct answer Code written by programmer is reduced to a set of machine-specific instructions prior to runtime; these then saved as an executable that can be run (e.g., Ada, c/c++, Cobol, FORTRAN) Interpreted language - correct answer Code written by programmer is saved in the same format as it was, which is then converted to machine-specific instructions at ...
    (0)
  • $14.49
  • + learn more
WGU C173 Knowledge test Exam Toolkit Questions and Verified Marking Scheme 2024/2025
  • WGU C173 Knowledge test Exam Toolkit Questions and Verified Marking Scheme 2024/2025

  • Exam (elaborations) • 5 pages • 2024
  • WGU C173 Knowledge test Exam Toolkit Questions and Verified Marking Scheme 2024/2025 Structural diagram - correct answer visualizes static elements of software like types of variables and functions Behavioral diagrams - correct answer visualize dynamic behaviors of software like the flow of an algorithm Flowchart - correct answer an activity diagram uses to show behavioral structures Use case diagram - correct answer a behavioral diagram that models how a user interacts with software...
    (0)
  • $10.49
  • + learn more
MAE 284 Final exam Questions and Answers 100% Pass
  • MAE 284 Final exam Questions and Answers 100% Pass

  • Exam (elaborations) • 6 pages • 2024
  • MAE 284 Final exam Questions and Answers 100% Pass The parabolic interpolation method is based on fitting a parabola to three points on the function. - ANSWER-True The golden section method helps to minimize computational costs in finding a maximum/minimum. - ANSWER-True The key benefit to the golden section method is that we do not have to calculate both x1 and x2 at each iteration. - ANSWER-True The parabolic interpolation method is usually faster than the golden section method. - ANSW...
    (0)
  • $11.49
  • + learn more
COMPRESSIBLE FLUID FLOW - OBLIQUE SHOCK AND EXPANSION WAVES
  • COMPRESSIBLE FLUID FLOW - OBLIQUE SHOCK AND EXPANSION WAVES

  • Summary • 33 pages • 2023
  • Available in package deal
  • This report elaborates on some applications of oblique shocks and expansion wave relations (shock expansion theory) to calculate the drag force on a diamond airfoil at different angles of attack and solve for the flow deflection angle at the tail of an infinitely thin plate. The report also shows a plot of flow deflection angle against shock angle using different supersonic Mach numbers. With the correct prediction of the shock patterns around a body, one can use these shock patterns to calculat...
    (0)
  • $9.98
  • 1x sold
  • + learn more
ENGR 133 Exam 1 Functions || Already Passed.
  • ENGR 133 Exam 1 Functions || Already Passed.

  • Exam (elaborations) • 5 pages • 2024
  • Available in package deal
  • + - * / ^ = correct answers Simple operations in MATLAB or Excel Dot Multiplier correct answers .* ./ .^ Performs element-by-element multiplication, division, or exponentiation % correct answers The percent sign is most commonly used to indicate nonexecutable text within the body of a program. This text is normally used to include comments in your code Logic Operators correct answers And (&): if a AND b are true or false, then c is true. Or (|): if a OR b is true, then c is true. XOR: i...
    (0)
  • $9.99
  • + learn more
Computational Physics Richard Fitzpatrick Professor of Physics The University of Texas at Austin
  • Computational Physics Richard Fitzpatrick Professor of Physics The University of Texas at Austin

  • Case • 322 pages • 2023
  • ience These set of lecture notes are designed for an upper-division undergraduate course on computational physics. 1.2 Major Sources The sources which I have consulted most frequently whilst developing course material are as follows: C/C++ PROGRAMMING: Software engineering in C, P.A. Darnell, and P.E. Margolis (Springer-Verlag, New York NY, 1988). The C++ programming language, 2nd edition, B. Stroustrup (Addison-Wesley, Reading MA, 1991). Schaum’s outline: Programming with C, 2nd ed...
    (0)
  • $10.49
  • + learn more
Richard fitzpatrick computational physics
  • Richard fitzpatrick computational physics

  • Exam (elaborations) • 322 pages • 2023
  • Computational Physics Richard Fitzpatrick Professor of Physics The University of Texas at Austin Contents 1 Introduction 8 1.1 Intended Audience . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 1.2 Major Sources . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 1.3 Purpose of Course . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 1.4 Course Philosophy . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 1.5 Programming Methodologies . . . . . . . . . . . ....
    (0)
  • $17.49
  • + learn more
 (Top  2024/2025 EXAM REVIEW PAPER ) WGU- Scripting and Programming - Foundations - C173 (Unit 8). Exam  Review. Comprehensive masterpiece,  rated A+
  • (Top 2024/2025 EXAM REVIEW PAPER ) WGU- Scripting and Programming - Foundations - C173 (Unit 8). Exam Review. Comprehensive masterpiece, rated A+

  • Exam (elaborations) • 3 pages • 2023
  • Available in package deal
  • WGU- Scripting and Programming - Foundations - C173 (Unit 8). Exam Review. Comprehensive masterpiece, rated A+ Compiled language - -A programming language that is first converted to machine code, which can then only run on a particular machine type. Programs written using compiled languages generally run faster than interpreted languages. Compiler - -A computer program created to read an entire program and convert it into a lower-level language and ultimately to assembly language use...
    (0)
  • $7.99
  • + learn more
C859 Python Review Exam Actual Questions And Well Elaborated Answers.
  • C859 Python Review Exam Actual Questions And Well Elaborated Answers.

  • Exam (elaborations) • 5 pages • 2024
  • f1 = open("/my_path/my_", "r") - correct answer to open and read a file f1 = open("/my_path/my_", "w") - correct answer to open and write a file (all previous material discarded) f1 = open("/my_path/my_", "a") - correct answer to open and add to a file () - correct answer read a file into a...
    (0)
  • $12.99
  • + learn more