ME 123 Computer Applications I Lecture 7: Basic Functions 3/20/03

Slides:



Advertisements
Similar presentations
A gentle introduction to R – how to load in data and produce summary statistics BRC MH Bioinformatics group.
Advertisements

Windows XP / Microsoft Word Computer Applications.
1 A workshop on using R to select a sample for EHES Susie Cooper & Johan Heldal Statistics Norway.
Lecture 14 User-defined functions Function: concept, syntax, and examples © 2007 Daniel Valentine. All rights reserved. Published by Elsevier.
MATLAB – What is it? Computing environment / programming language Tool for manipulating matrices Many applications, you just need to get some numbers in.
CSE1222: Unix IntroThe Ohio State University1. Common Directory Commands  lsList directory contents  cd {dir}Change working directory to {dir}  pwdPrint.
UW CSE 190p Section 6/21, Summer 2012 Dun-Yu Hsiao.
Lecture 7 Sept 17 Goals: Complete Chapter 4 Chapters 5 and 6.
Lecture 7 Sept 29 Goals: Chapters 5 and 6. Scripts Sequence of instructions that we may want to run can be stored in a file (known as script). by typing.
Chapter 5 Accessing Files and Directories. How Directories Get Created OS installation: usr, dev, etc, export, kernel and others places to store installation.
McGraw-Hill©The McGraw-Hill Companies, Inc., 2000 Chapter 20 File Transfer Protocol (FTP)
Linux/Bash Commands Damian Gordon. ls List all the visible files in the current folder.
Using Macs and Unix Nancy Griffeth January 6, 2014 Funding for this workshop was provided by the program “Computational Modeling and Analysis of Complex.
Learning basic Unix command IT 325 operating system.
MATLAB File Management. MATLAB User File Management Matlab provides a group of commands to manage user files. For more information, type help iofun. pwd.
ENGR-25_MATLAB_OverView-1.ppt 1 Bruce Mayer, PE Engineering/Math/Physics 25: Computational Methods Bruce Mayer, PE Licensed Electrical.
MATLAB Lecture One Monday 4 July Matlab Melvyn Sim Department of Decision Sciences NUS Business School
CSN08101 Digital Forensics Lecture 1B: Essential Linux and Caine Module Leader: Dr Gordon Russell Lecturers: Robert Ludwiniak.
Guidelines for Homework 6. Getting Started Homework 6 requires that you complete Homework 5. –All of HW5 must run on the GridFarm. –HW6 may run elsewhere.
Vim Editor and Unix Command gcc compiler Computer Networks.
1 Computer Programming (ECGD2102 ) Using MATLAB Instructor: Eng. Eman Al.Swaity Lecture (1): Introduction.
ENGR-25_MATLAB_OverView-1.ppt 1 Bruce Mayer, PE Engineering/Math/Physics 25: Computational Methods Bruce Mayer, PE Licensed Electrical.
Lecture 7 Sept 22 Goals: Chapters 5 and 6. Scripts Sequence of instructions that we may want to run can be stored in a file (known as script). by typing.
UNIX/LINUX SHELLS.  “A Unix shell is a command-line interpreter or shell that provides a traditional user interface for the Unix operating system and.
Shell Advanced Features. Module 8 Shell Advanced Features ♦ Introduction In Linux systems, the shells are often referred to as command line interfaces.
Reading and Mapping Aerosol Data From a MODIS HDF4 File
EGR 115 Introduction to Computing for Engineers Introduction to MATLAB Friday 29 August 2014 EGR 115 Introduction to Computing for Engineers.
Bioinformatics for biologists Dr. Habil Zare, PhD PI of Oncinfo Lab Assistant Professor, Department of Computer Science Texas State University Presented.
Objective: SWBAT improve the efficiency of mathematical calculations through the use of a spreadsheet program Do Now: What is the primary purpose of a.
1 Lecture 4 Post-Graduate Students Advanced Programming (Introduction to MATLAB) Code: ENG 505 Dr. Basheer M. Nasef Computers & Systems Dept.
ME 322: Instrumentation Lecture 8 February 3, 2016 Professor Miles Greiner Lab 4, Propagation of Uncertainty, Maximum and likely, Power Product, Examples.
ME 123 Computer Applications I Lecture 16: More Matlab Programming: Secant Method, Review 4/4/03.
NET 222: COMMUNICATIONS AND NETWORKS FUNDAMENTALS ( NET 222: COMMUNICATIONS AND NETWORKS FUNDAMENTALS (PRACTICAL PART) Tutorial 2 : Matlab - Getting Started.
Extending MATLAB Write your own scripts and/or functions Scripts and functions are plain text files with extension.m (m-files) To execute commands contained.
Introduction to Programming on MATLAB Ecological Modeling Course Sep 11th, 2006.
An Introduction to Programming in Matlab Emily Blumenthal
Linux CSE 1222 CSE1222: Lecture 1BThe Ohio State University1.
GRID COMPUTING.
Unit 3 Selecting the physics configuration in the simulation
Matlab Programming for Engineers
Introduction to Matlab
Climate Exercise – Day 2 KATHARINE HAYHOE.
Matlab Training Session 4: Control, Flow and Functions
Useful Linux Commands.
MATLAB Introduction Dr. Theodore Cleveland University of Houston
Learn To Fix Errors On Dell PC. We are a third-party service provider for Dell users in Nederland. Call us on Website:
Linux + Galaxy Server Tutorial
ME 123 Computer Applications I
Crash course in R – short introduction
ME 123 Computer Applications I Lecture 24: Character Strings 4/18/03
EPD 3.0 electronic Product Designer setup procedure: ls ~eeview | grep ePD | grep setup Part 2 tutor_ePD.setup ee457_ePD.setup.
Lab 00 Discussion Linux Basics
Run Java file with Window cmd
CSCI N207 Data Analysis Using Spreadsheet
Introduction to Matlab
ME 123 Computer Applications I Lecture 23: Advanced Graphics 4/17/03
Recapitulation of Lecture 8
Using Script Files and Managing Data
ME 123 Computer Applications I Lecture 25: MATLAB Overview 4/28/03
Importing Excel Data & Exporting Data to Excel
Recapitulation of Lecture 11
Recapitulation of Lecture 5
ME 123 Computer Applications I
ME 123 Computer Applications I Lecture 11: More on For loop 3/27/03
Recapitulation of Lecture 13
ME 123 Computer Applications I Lecture 4: Vectors and Matrices 3/14/03
ME 123 Computer Applications I Lecture 8: System of Equations 3/21/03
Recapitulation of Lecture 12
ME 123 Computer Applications I Lecture 5: Input and Output 3/17/03
ME 123 Computer Applications I Lecture 38: More on HTML 5/20/03
Presentation transcript:

ME 123 Computer Applications I Lecture 7: Basic Functions 3/20/03

Recapitulation of Lecture 6 Yesterday, we learned how to interface between Matlab and Excel perform statistical analysis using the bar and hist commands My solutions to the in-class exercise Make sure you are in the correct directory when you load or save data files pwd command gives you the path of working directory ls or dir command lists files in the current directory Lecture 7 ME 123 Computer Applications I

ME 123 Computer Applications I Road Map of Lecture 7 Solutions to HW 2-2 Simple user defined function: horse power calculation example data statistics example In-class exercise on kinematics calculation Lecture 7 ME 123 Computer Applications I