Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more.
Course Hero has millions of course specific materials providing students with the best way to expand
their education.
Below is a small sample set of documents:
Santa Clara - TESP - 124
A Basic Theology of Marriage Christopher West Over two thirds of what the Catholic Church has ever said about marriage in her two thousand year history has come from John Paul II's pontificate. The twentieth century witnessed significant developments
Santa Clara - TESP - 124
`But the Bible says . '? A Catholic reading of Romans 1 by James Alison A talk prepared for Mount Saint Agnes Theological Center for Women, Baltimore, and given there on 12 January 2004. This evening's talk has a very odd title. One of the reasons it
Santa Clara - TESP - 124
TESP 124 Theology of Marriage - 39867Instructor Home Phone Office Phone Office Hours E-mail Times Start Date James W. Reites, S.J. 408-554-4135 408-554-6959 TR 1:30-2:30 PMPrint this pageOffice Address 553 Franklin Street Via the Course Website:
Santa Clara - PHIL - 120
P. F. STRAWSON: FREEDOM AND RESENTMENT- The Determinism and Freedom Philosophy Website -The doyen of living English philosophers, by these reflections, took hold of and changed the outlook of a good many other philosophers, if not quite enough. He
Santa Clara - PHIL - 120
Phil 120 April 10th, 2008 Background Reading suggestions 1) Moral Responsibilities, ed. by J.D. Fischer Cornell U Press 1986 Intro Essay 2)Perspectives on Moral Responsibility ed. by J.D. Fischer Cornell U Press 1993 Intro Essay 3)A Contemporary Intr
Santa Clara - HIST - 193
History 193 Seminar in Africa and Middle East History: African Life HistoriesMonday, 3:30-6:30, O'Connor 210 Professor LaRay Denzer, 24 O'Connor Hall, ldenzer@scu.edu, x4112 Office hours: MWF, 10:30-11:30 This seminar focuses on the life histories o
Santa Clara - HIST - 193
Why Shostak goes back? What happened to !Kung in 20 year period?
Santa Clara - ENGR - 190
function time = align_all(bundle) %$Revision: 1.5 $ $Author: mmccann $ $Date: 2004/05/09 23:29:26 $ %align_all([bundle]) - runs align_waves on all waves files in directory % Gdir for each set of bundles. Can bun run on a specific bundle % if specifie
Santa Clara - ENGR - 190
function alignStruct = align_waves(waves1,waves2,gstart,gend,offset) %alignStruct = align_waves(waves1,waves2,gstart,gend,offset) % performs alignment on small subregion of right side of matrix % waves1 with all of waves2. gstart and gend are optiona
Santa Clara - ENGR - 190
function c = calcCenter(pts) % $Revision: 1.2 $ $Author: mmccann $ % c = calcCenter(pts): given a list of points in pts, calculate the % center of the circle and the radius. % c = [i j radius] [rows cols] = size(pts); if rows < 3 error('must have at
Santa Clara - HIST - 193
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %Audio Extraction From Optical Scans of Records $Revision: 1.3 $ $Author: mmccann $ $Date: 2004/05/11 13:58:59 $ Main Functions. align_all align_waves calcCente
Santa Clara - ENGR - 190
function create_all_songs %$Revision: 1.2 $ $Author: mmccann $ $Date: 2004/05/09 23:27:37 $ % create_all_songs - Creates a list of all songs. global Gdir Gnum_scans Gall_waves S = load(sprintf('%s/song_struct.mat',Gdir); song_struct = S.song_struct;
Santa Clara - ENGR - 190
function create_song(first_bun,last_bun) % $Revision: 1.3 $ $Date: 2004/05/10 02:13:50 $ $Author: mmccann $ global Gmaster Galigns Gall_waves Gdir Gnum_scans buns = first_bun:last_bun; num_buns = length(buns); samples = 0; for i=buns samples = sample
Santa Clara - ENGR - 190
function do_everything() %original code: function do_everything(dirname, nscans, rpm) %$Revision: 1.2 $ $Author: mmccann $ $Date: 2004/05/09 23:47:27 $ dirname='P:\dan\susie_image\photoshop' nscans=2 rpm=78 set_dir(dirname, nscans, rpm); %get_track;
Santa Clara - HIST - 193
function do_everything() %original code: function do_everything(dirname, nscans, rpm) %$Revision: 1.2 $ $Author: mmccann $ $Date: 2004/05/09 23:47:27 $ dirname='P:\dan\susie_image\photoshop' nscans=2 rpm=78 set_dir(dirname, nscans, rpm); get_track; %
Santa Clara - ENGR - 190
% Does a piecemeal Gaussian of the track_piece matrix % $Revision: 1.4 $ $Author: nailon $ function do_gaussian(delta) global track_piece; global Gaussian sz=floor(delta*2.5); gaussian = [-sz:sz]; gaussian = exp(-gaussian.^2/(delta^2); Gaussian = tra
Santa Clara - ENGR - 190
function out = do_gaussian1d(in, del) global g [dummy width] = size(in); sz = floor(del*2.5); g = [-sz:sz]; g = exp(-g.^2/del^2); g = g/sum(g); out = zeros(1,2*sz + width); out(sz+1:sz+width) = in; % flip the edges for i=1:sz out(i) = out(2*sz-i+2);
Santa Clara - ENGR - 190
%$Revision: 1.5 $ $Author: nailon $ $Date: 2004/05/09 03:18:48 $ global Gdir Gnum_scans Grpm Gall_waves Gdebug Galigns track_piece global Gwave Gmaster global Gsmooth_image Gsmooth_wave global Gstart_end_thresh % used in discovering the first pixel o
Santa Clara - ENGR - 190
function time = find_all_jumps(bundle_vec) %$Revision: 1.1 $ $Author: mmccann $ $Date: 2004/05/08 21:20:23 $ t0 = clock; global Gdir num_bundles = get_num_bundles; S = load(sprintf('%s/song_struct.mat',Gdir); song_struct = S.song_struct; if nargin <
Santa Clara - ENGR - 190
function L = find_diffs(A,B,mode) %$Revision: 1.3 $ $Author: mmccann $ $Date: 2004/05/09 22:16:14 $ % L = find_diffs(A,B [,mode]) - returns an array of vectors of the small % matrix A and a larger matrix B that represents the differences % between th
Santa Clara - HIST - 193
function j_struct = find_jump(bundle) %$Revision: 1.1 $ $Author: mmccann $ $Date: 2004/05/08 20:44:20 $ global Gdir % load top bundle and bottom bundle into waves1 and waves2 S = load(sprintf('%s/%d.%d.waves.mat',Gdir,1,bundle); waves1 = S.waves(:,1:
Santa Clara - ENGR - 190
function [ssdmean, ssdstd_dev] = find_stats(wavemat1, wavemat2, numgrooves, numsamples, . groovejump, samplejump, numwindows) % find_stats(wave_matrix_1, wave_matrix_2, #_of_grooves, #_of_samples, num_windows) % finds the mean and standard deviation
Santa Clara - ENGR - 190
function [ssdmean, ssdstd_dev] = find_stats_rand(wavemat1, wavemat2, numgrooves, numsamples, numwindows) %$Revision: 1.2 $ $Author: pcalamia $ $Date: 2004/05/09 22:48:21 $ % find_stats_rand(wave_matrix_1, wave_matrix_2, #_of_grooves, #_of_samples, nu
Santa Clara - ENGR - 190
function pts = findOuterEdge(n) % pts = findOuterEdge(n): returns a list of n points corresponding % to the outer edge of the record. Input image files are assumed % to be in a standard orientation. By default n is 1/3 of pixels global Grecord %num_i
Santa Clara - ENGR - 190
function pts = findOuterEdge(n) % pts = findOuterEdge(n): returns a list of n points corresponding % to the outer edge of the record. Input image files are assumed % to be in a standard orientation. By default n is 1/3 of pixels global Grecord %num_i
Santa Clara - ENGR - 190
function num_bundles = get_num_bundles % $Revision: 1.2 $ $Author: mmccann $ $Date: 2004/05/09 22:16:14 $ % num_bundles = get_num_bundles() - calculates the number of % bundles per sector in directory Gdir. global Gdir S = load(sprintf('%s/song_struc
Santa Clara - ENGR - 190
% $Revision: 1.5 $ $Author: nailon $ $Date: 2004/05/09 03:18:48 $ function [sep_list,mn,st, section,f,kernel,section_conv_kernel] = get_separation(y,x,r1,r2) % Returns a vector of song separators. Each separator % is specified as its distance from th
Santa Clara - HIST - 193
% $Revision: 1.5 $ $Author: nailon $ $Date: 2004/05/09 03:18:48 $ function [sep_list,mn,st, section,f,kernel,section_conv_kernel] = get_separation(y,x,r1,r2) % Returns a vector of song separators. Each separator % is specified as its distance from th
Santa Clara - ENGR - 190
function get_track(max_mem,arg) % $Revision: 1.12 $ $Author: nailon $ $Date: 2004/05/09 03:18:48 $ global track_piece global Gdir global Gdebug global Gsmooth_image if (nargin = 0) max_mem = 10000000; end if (max_mem < 10000000) error('max_mem must b
Santa Clara - ENGR - 190
function [angles,sums,track_starts,fout] = get_wav %$Revision: 1.9 $ $Author: nailon $ $Date: 2004/05/09 20:17:32 $ %[angles,sums,track_starts] = get_wav - creates a wave matrix from % the track_piece image, and stores it in the global variable Gwave
Santa Clara - ENGR - 190
function get_waves %get_waves - runs get_wav for all the .trk.mat files in the directory, % and stores the Gwave's in #.waves.mat, where # is the image number. global global global global global global Grecord Gdelta track_piece Gdir Gnum_scans Gwave
Santa Clara - ENGR - 190
function load_aligns(bundle) % $Revision: 1.3 $ $Author: mmccann $ $Date: 2004/05/02 21:13:49 $ % load_aligns - loads alignment data stored in files 1.1.align.mat, % 2.1.align.mat, . into global structure array Galigns. global Gdir Gnum_scans Galigns
Santa Clara - ENGR - 190
function load_waves(bundle) % $Revision: 1.3 $ $Author: mmccann $ $Date: 2004/05/05 16:49:00 $ %load_waves - loads all files 1.waves.mat, 2.waves.mat, . into % global structure array Gall_waves. Looks at Gdir and Gnum_scans. global Gdir Gnum_scans Ga
Santa Clara - ENGR - 190
function power = process_song(filename) % Usage: process_song( song_file_name ) % This function does a segmented resampling of a song array, 1000000 % samples at a time, and then applies various filters. [song, fs] = wavread(filename); % NOTE: There'
Santa Clara - ENGR - 190
function rate = rate_from_align(bundle) %$Revision: 1.1 $ $Author: mmccann $ $Date: 2004/05/07 03:17:42 $ %rate = rate_from_align([bundle]) - returns the sample rate in samples % per second based on the alignment data for the given bundle (1 by % def
Santa Clara - ENGR - 190
function rate = rate_from_track %$Revision: 1.1 $ $Author: mmccann $ $Date: 2004/05/07 03:15:20 $ %rate = rate_from_track - returns the sample rate in samples per % second based on the data found in file 1.1.trk.mat and global % variable Grpm. The ra
Santa Clara - ENGR - 190
function set_dir(dir_name, num_scans, rpm, smooth_image, smooth_wave) %$Revision: 1.7 $ $Author: nailon $ $Date: 2004/05/09 03:18:48 $ %set_dir(dir_name [, num_scans] [,rpm] [,smooth_image] [,smooth_wave]) sets a global variables for the % directory
Santa Clara - ENGR - 190
function set_dir(dir_name, num_scans, rpm, smooth_image, smooth_wave) %$Revision: 1.7 $ $Author: nailon $ $Date: 2004/05/09 03:18:48 $ %set_dir(dir_name [, num_scans] [,rpm] [,smooth_image] [,smooth_wave]) sets a global variables for the % directory
St. Olaf - RELIGION - 121
Religion 121L Spring 2008 Some terms and information from Hauer & Young, Chapter 1 A guide to what I'm likely to ask you about on a quiz in class Tuesday. Literary world: what to these authors mean by this term? Historical world: what do these author
St. Olaf - RELIGION - 121
Religion 121L, Spring 2008 Hauer & Young, Chapter 5: The Nation Israel (Joshua, Judges, I & II Samuel, I & II Kings) Pay attention to the 3 worlds. Know key "facts" about literary and historical worlds of these books known collectively as the Former
St. Olaf - RELIGION - 121
Religion 121L, Spring 2008 Hauer & Young, Chapter 7: Israel's Sacred Songs (The Writings I) Pay attention to the 3 worlds. Know key "facts" about literary and historical worlds of these books. Notice that this is the first of two chapters about the t
St. Olaf - RELIGION - 121
Religion 121L Spring 2008 Some terms and information from Hauer & Young, Chapter 10 A guide to what I'm likely to ask you about on a quiz in class Tuesday. This chapter departs from the more recent ones focusing on a book or set of books in the Hebre
St. Olaf - RELIGION - 121
Religion 121L Spring 2008 Some terms and information from Hauer & Young, Chapter 11 A guide to what I'm likely to ask you about on a quiz. Like the previous chapter, this one is not focused on biblical books; rather it provides an introduction to the
Carroll WI - BIO - 130
ENDOCRINE SYSTEMI.II.III.IV.V.Functions a. Maintain homeostasis by regulating BP, electrolytes, temp. b. Secretions act in concert w/ NS to help body react to stress c. Major regulator of growth & development Definitions a. Endocrine syst
Carroll WI - BIO - 130
MUSCULAR SYSTEM As you study the muscle groups, group them into their different groups, functions, and origins.make flashcards. I. Introduction a. Over 600 skeletal musclesb. I will provide a muscle list i. Will be on Blackboard before the LAB ii. Th
Carroll WI - BIO - 130
NERVOUS SYSTEM I. Functions a. Sensory i. Receptors both inside & outside body ii. Sensory cells send signals (in form of a nerve impulse) to brain b. Integrative i. Brain & spinal cord process nerve impulses from sensory nerves ii. Once receive impu
Carroll WI - BIO - 130
SPECIAL SENSESI.II.III.IV.Sensory Receptors a. Characteristics i. Detect changes in ext. & int. environment ii. Convert physical or chemical stimulus into an action potential b. Named by location i. Exteroreceptors 1. external surface ii. V
Carroll WI - BIO - 130
PHS 235Unit 1: Organization of the BodyCHAPTER 5: HISTOLOGYA. Types and origins of tissues; cell junctionsTissue: a group of similar cells that function together to carry out specialized activities. Histology: the science that deals with the st
UVA - ARTH - 101
ART HISTORY Neoclassicism, chapter 20 Catholic Baroque chapter 19 Golden age of Dutch Painting chapter 19 p.598-612 Baroque and Rococo in France and England chapter 19 p. 612-626, chapter 20 p.629-637 readings: Saint Theresa of Avila, Life, Perspecti