general computer science for engineers cisc 106 lecture 06 roger craig computer and information...

13
General Computer Science General Computer Science for Engineers for Engineers CISC 106 CISC 106 Lecture 06 Lecture 06 Roger Craig Computer and Information Sciences 2/23/2009

Post on 22-Dec-2015

213 views

Category:

Documents


0 download

TRANSCRIPT

General Computer General Computer Science Science

for Engineersfor EngineersCISC 106CISC 106

Lecture 06Lecture 06

Roger CraigComputer and Information Sciences

2/23/2009

Lecture OverviewLecture OverviewHow to log into StraussImportance of play and practiceArrays

What is Strauss?What is Strauss?Strauss is a serverAccessed by clientsClient/Server Protocol: ssh (secure shell) (like http,

ftp, email etc.)Secure = encryptedApplications listed on course website

Client/ServerClient/Server

How to log into StraussHow to log into Straussstrauss.udel.edu is the hostnameFrom a Unix command line, you

would type:ssh strauss.udel.edu(NB: You may need to put ‘username@’

in front of the hostname.)Using a GUI program, you would put

the hostname, strauss.udel.edu, into the relevant textbox.

Importance of Play and Importance of Play and PracticePracticeMust program (play) more than 1 day

a weekMATLAB is easy to use, forgiving,

instantaneous results (quick turnaround)

Predefined functions (i.e. don’t have to reinvent the wheel)

10,000 hours ruleNational math exams example

ArraysArrays

ArraysArraysFundamental unit of data in MATLABCollection of data into rows and

columns(MATrix LABoratory)1 dimensional, vector2 dimensional, matrix0 dimensional, scalar (a 1x1 array)

Row vector, column vector , transpose

ArraysArrays

Array commandsArray commandsa = [1 2 3 4]b = [1; 2; 3; 4]c = [1 2; 3] (error)d = [1 2; 3 4]f = d(1,2)g(4,5) = 7Shortcuts (also a = 1:4) or h = 1:3:15(may come in handy for lab)

Arrays continuedArrays continuedc = 1:3:30; whos czeros(), ones(), eye()scalar vs. array arithmetic(NB: not matrix arithmetic) +, - , * (.*) , / (./) ^ etc.

ConclusionConclusionImportant to know how to log into

StraussPractice new commands and

concepts after lecture and labArrays and matrices, fundamental

data unit of MATLAB

QuestionsQuestionsAny questions?