8 Pages

matlab exam 2 prep

Course: ENGINEERIN 127, Spring 2008
School: Rutgers
Rating:
 
 
 
 
 

Word Count: 1794

Document Preview

exam matlab 2 prep.oo3 Topic functions and files 1 141-162 3.1 elementary mathematical functions lookfor ex. lookfor imaginary to get a list of functions that deal with imaginary numbers exponential and logarithmic functions exponential exp(x) exponential; e^x sqrt(x) square root; x^(1/2) logarithmic log(x) natural logarithm; ln(x) log10(x) common (base 10) logarithm; log x = log[10] x complex abs(x) absolute...

Register Now

Unformatted Document Excerpt

Coursehero >> New Jersey >> Rutgers >> ENGINEERIN 127

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.

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.
exam matlab 2 prep.oo3 Topic functions and files 1 141-162 3.1 elementary mathematical functions lookfor ex. lookfor imaginary to get a list of functions that deal with imaginary numbers exponential and logarithmic functions exponential exp(x) exponential; e^x sqrt(x) square root; x^(1/2) logarithmic log(x) natural logarithm; ln(x) log10(x) common (base 10) logarithm; log x = log[10] x complex abs(x) absolute value; x angle(x) angle of a complex number x conj(x) complex conjugate imag(x) imaginary part of a complex number x real(x) real part of a complex number x numeric ceil(x) round to the nearest integer toward fix(x) round to the nearest integer toward 0 floor(x) round to the nearest integer towards - sign(x) signum function (+1 if x > 0; 0 if x = 0; -1 if x <0) complex number functions numeric functions trigonometric functions trigonometric cos(x) cot(x) csc(x) sec(x) sin(x) tan(x) inverse trigonometric acos(x) acot(x) Topic inverse trigonometric acos(x) acot(x) acsc(x) asec(x) asin(x) atan(x) atan2(x,y) four quadrant inverse tangent hyperbolic functions cosh x = (e^x + e^-x) / 2 sinh x = (e^x - e^-x) / 2 sinh^-1 = ln(x + (x^2 + 1)^(1/2)) hyperbolic cosh(x) coth(x) csch(x) sech(x) sinh(x) tanh(x) inverse hyperbolic acosh(x) acoth(x) acsch(x) asech(x) asinh(x) atanh(x) 3.2 user-defined functions function [output variables] = function_name(input variables) function definition line variants function [area_square] = square(side); square.m function area_square = square(side); square.m function [volume_box] = box(height, width, length); box.m function [area_circle, circumf] = circle(radius); circle.m function sqplot(side); sqplot.m variations in function calls function arguments local variables global variables applications finding the zeroes of a function minimizing a function of one variable Topic applications finding the zeroes of a function minimizing a function of one variable minimizing a function of several variables design optimization problems 4, 6, 9, 12, 14, 16 (178-180) 4 for several values of x, use matlab to confirm that sinh x = (e^x-e^-x)/2 6 the capacitance of two paralell conductors of length L and radius r, separated by a distance d in the air, is given by C = ((permittivity)L)/ln((d-r)/r) permittivity = 8.854*10^-12 F/m write a script file that accepts user input for d, l, and r, and computes and displays C. test the file with the values L=1m, r=0.001m, and d=0.004m 9 write a function that accepts input in degrees F and computes the corresponding values in degrees C the relation between the two is CT = (5/9)(TF-32) 12 a fence around a field is shaped as shown in figure p12 (p179). it consists of a rectangle of length L and width W, and a right triangle that is symmetrical about the central horizontal axis of the rectangle. suppose the width w is known in meters and the enclosed area a is known in square meters. writre a user-defined function file with W and A as inputs. the outputs are the length L required so the area is A, and the total length of fence required. Test your function for the values W = 6m and A = 80 m^2 14 using estimates of rainfall, evaporation, and water consumption, the town engineer deveoped the following model of the water volume in the resovior as a function of time V(t) = 10^9+10^8(1-e^(-t/100)) -rt where V is the water volume in liters, t is the time in days, and r is the town's consumption rate in liters/ day. write two user defined functions. the first function should define the function V(t) for use with fzero function the second function should use fzero to compute how long it would take for the volume of water o decrease to x percent of its initial value of 10^9 liters the inputs to the second function should be x and r. test your functions with x = 50 percent, and r=10^7 liters/ day 16 a torus is shaped like a donut. if it's inner radius is a and its outer radius is b, the volume and surface area are given by Topic 16 a torus is shaped like a donut. if it's inner radius is a and its outer radius is b, the volume and surface area are given by V=(1/4)^2(a+b)(b-a)^2 A=^2(b^2-a^2) create a user defined function that computes V and A from the arguments a and b suppose that the outer radius is constrained to be 2 in greater than the inner radius. write a script file that uses your function to plot A and V versus a for 0.25a4 in functions and files 2 163-172 3.3 advanced function programming function handles methods for calling functions types of functions primary anonymous subfunctions nested overloaded private anonymous functions multiple input arguments no input arguments calling one function within another variables and anonymous functions subfunctions nested functions private functions problems 18, 19, 20, 21, 22, 23 (180-181) 18 use the gen_plot function described in section 3.3 to obtain two subplots, one plot of the function 10e^(-2x) over the range 0x2, and the other of a plot of 5sin(2x /3) over the range 0x6 19 create an anonymous function for 10e^(-2x) and use it to plot the function over the range 0x2 20 create an anonymous function for 20x^2-200x+3 and use it a) to plot the function to determine the approximate location of its minimum, and 20 Topic create an anonymous function for 20x^2-200x+3 and use it a) to plot the function to determine the approximate location of its minimum, and b) with the fminbnd function to precisely determine the location of the minimum 21 four create anonymous functions to represent the function 6e^(3cos(x^2))), which is composed of the functions h(z)=6e^z, g(y)=3cos(y), and f(x)=x^2. use the anonymous functions to plot 6e^(3cos(x^2)) over the range 0x4 22 use a primary function with a subfunction to compute the zeroes of the function 3x^3 - 12x^2 -33x +90 over the range -10x10 23 create a primary function that used a function handle with a nested function to compute the minimum of the function 20x^2-200x+3 over the range 0x10 functions and files 3 172-181 3.4 working with data files importing data from externally generated files importing spreadsheet files the import wizard importing ASCII data files with text headers importing binary data files exporting delimited ASCII data files 3.5 summary problems 24, 25 (181) 24 use a text editor to create a file containing the following data. then use the load function to load the file into Matlab, and use the mean function to compute the mean value of each column 55 42 98 51 39 95 63 43 94 58 45 90 25 enter and save the data given in problem 24 in a spreadsheet. then import the spreadsheet file into the matlab variable A. Use matlab to compute the sum of each column. programming with matlab 1 183-200 Topic programming with matlab 1 183-200 4.1 program design and development algorithms and control structures structured programming top-down design and program documentation pseudocode example 1 sequential operations example 2 conditional operations example 3 iterative operations finding bugs development of large programs 4.2 relational operators and logical variables the logical class the logical function accessing arrays using logical arrays 4.3 logical operators and functions table 4.3-1 p 194 Logical Operators table 4.3-2 p 195 Order of prescedence for operator types table 4.3-3 p 196 truth table short-circuit operators table 4.3-4 logical functions logical operators and the find function problems 2, 9, 12, 14 (244-254) 2 the roots of the quadratic equation ax^2+bx+c=0 are given by x=(-bsqrt(b^2-4ac))/(2a) a) develop a pseudocode description of a program to compute both roots given the values of a, b, and c. Be sure to identify the real and imaginary parts. b) write the program described in part a and test it for the following cases: 1. a=2, b=10, c=12 2. a=3, b=24, c=48 3. a=4, b=24, c=100 9 the arrays price_A and price_B given below contain the price in dollars of two stocks over 10 days. Use Matlab to determine how many days the price of stock A was above the price of stock B price_A = [19, 18, 22, 21, 25, 19, 17, 21, 27, 29] price_B = [22, 17, 20, 19, 24, 18, 16, 25, 28, 27] 12 Topic 12 price_A = [19, 18, 22, 21, 25, 19, 17, 21, 27, 29] price_B = [22, 17, 20, 19, 24, 18, 16, 25, 28, 27] the height and speed of a projectile (such as a thrown ball) launched with a speed of v0 at an angle A to the horizontal are given by h(t) = v0*t*sin(A)-0.5*g*t^2 v(t) = sqrt(v0^2-2*v0*g*t*sin(A)+g^2*t^2) 14 Let e1 and e2 be logical expressions. DeMorgan's laws for logical expressions state that NOT(e1 AND e2) implies that (NOT e1) OR (NOT e2) and NOT(e1 OR e2) implies that (NOT e1) AND (NOT e2) use these laws o find an equivalent expression for each of the following expressions and use Matlab to verify the equivalence a. ~ ( ( x < 10 ) & ( x >= 6 ) ) b. ~ ( ( x == 2 ) | ( x > 5 ) ) programming with matlab 2 200-225 4.4 conditional statements the if statement the else statement the ifelse statement checking the number of input and output arguments strings and conditional statements 4.5 loops for loops the break and continue statements using an array as a loop index implied loops use of logical arrays as masks while loops problems 18, 20, 23, 27, 31, 33 (244-254) 18 write a program that accepts a year and determines whether or not the year is a leap year. use the mod function. The output should be the variable extra_day, which should be 1 if the year is a leap year and 0 otherwise. The rules for determining leap years in the Gregorian calendar are: 1. all years evenly divisible by 400 are leap years 2. years evenly divisible by 100 but not 400 are not leap years 3.years divisible by 4 but not 100 are leap years 4.all other years are not leap years Topic 1. all years evenly divisible by 400 are leap years 2. years evenly divisible by 100 but not 400 are not leap years 3.years divisible by 4 but not 100 are leap years 4.all other years are not leap years for example, the years 1800, 1900, 2100, 2300, and 2500 are not leap years, but 2400 is a leap year 20 the (x,y) coordinates of a certain object as a function of time t are given by x(t) = 5t-10 y(t) = 25t^2-120t+144 for 0x4. Write a program to determine the time at which the object is the closest to the origin at (0, 0). Determine also the minimum distance. do this two ways: a. By using a for loop b. By not using a for loop 23 electrical resistors are said to be connected "in series" if the same current passes through each and "in parallel" if the same voltage is applied across each. If in a series, they are equivalent to a single resistor whose resistance is given by R = R1 + R2 + R3 + ... + Rn If in parallel, their equivalent resistance is given by 1/R = 1/R1 + 1/R2 + 1/R3 + ... + 1/Rn write an M-file that prompts the user for the type of connection (series or parallel) and the number of resistors n and then computes the equivalent resistance 27 31 33
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:

Rutgers - ECONOMICS - 220
econ 3-6-08.oo3Topic econ 3/6/08 interest allocates capital in a free market rations available capital to projects which yield the greatest return to society firms tend to reinvest into low interest projects internally, instead of others which may
Rutgers - CHEMISTRY - 160
chem exam 2.oo3Topic EXAM 2 START 16 16.7 Reaction Mechanisms: Steps in the overall reaction reaction mechanism reaction intermediate elementary reactions and molecularity elementary reactions elementary steps unimolecular reaction bimolecular reac
Arizona - INDV - 103
3/10 Global Governance Many problems today defy single-state solutions Climate Change Pollution Human rights Global market regulation These require governance beyond the level of the state This creates many problems The usual collective action proble
New Mexico - SOC - 205
Review Outline #2Sociology 205Theories covered: Consensus Theory (law enforcement, reciprocal effect), Consensus Theory- Individuals within a society agree on basic values, on what is inherently right and wrong. Acts that are wrong are considered
New Mexico - MAT - 120
Math 120, fall 2002, Test 2aName: _ You must show your work for every problem, including the ones that are multiple choice.Answer word problems in complete sentences and include appropriate units.Part I (5 points each)1. Which of the ordered pai
New Mexico - MAT - 120
Answers to practice problems on Test #2 Review1. a) (-2, 5); b)25 23 3,11 23; c) inconsistent (the lines are parallel)2. 8x 7 x 5 2x 9x ; leading coefficient: -8; degree: 7 3. a) 3x 3 x 2 16 b) 9x 3 9x 4 4. a) 4 x 7 y 3 b) 4 x 3 y 4 3 5. a)
New Mexico - MAT - 120
Math 120, Fall 2007, Review for Test #2Skills essential for success on Test #2: 1. Solving systems of equations by graphing, and by substitution and elimination. 2. Applications of linear systems: motion and mixture problems 3. Understanding the rul
New Mexico - SOC - 205
Here is a head start on the test review. We may add some concepts, but not too many. Review Outline #2 Sociology 205Theories covered: Consensus Theory (law enforcement, reciprocal effect), Symbolic Interaction Theory (past experiences), Differentia
Wisconsin - ZOO - 570
Cell Biology Exam 2 Our Friend the Nucleus: -Central Dogma of Molecular Biology *information moves in the cell such that-DNA Housed in the Nucleus *Replication and Transcription require protein, yet, protein is made in the cytoplasm -Translation re
Wisconsin - ZOO - 570
The Cell Cycle and Multicellularity -The cell cycle- aka the cell division cycle- the series of processes and events that allow 1cell-2 cells Very Important because. -provides raw material for development of multicellular organisms -needed to replace
Rutgers - PHYSICS - 750
Answers to Homework #1-Light Basic Observations1) The major difference between astronomy and other sciences is that with astronomy there are no controlled experiments; you must rely upon the Universe without being able to tweak things, or do things a
Arizona - INDV - 103
3/3 Governance and Power How do we solve the problems of collective action? We need to get around the problems of conflicting incentives? In large scale societies we need to have a way of making us act collectively Government Government solves collec
Arizona - INDV - 103
2/25 Governance Who rules? How? Why? Through what means? Can Iraq become a fully-functional government? Why is governance important? It answers one of the most basic questions of politics: Who gets what, where, when, how, and why? It's how we solve p
Wisconsin - ZOO - 570
Protein Sorting and Membrane Trafficking-macromolecules are NOT randomly distributed throughout the cell *different organelles have different proteins (and other macromolecules) *with cytoplasm, macromolecules are also nonrandomly distributed *even
Arizona - INDV - 103
Feb 13 The Inter-war Period The end of WW1 leads to a period of intellectual turmoil This is reflected in all aspects of society This leads to a wide range of new ideas that permeate the world This will build an intellectual foundation for the vario
Arizona - TRAD - 104
3/7 The Labors of Herakles First 6 thought to happen in peloponisia 1 Nemean Lion 2 Lernaean Hydra 3 Cerynitian Hind 4 Erymanthian Boar 5 Augeian Stables 6 Stymphalian Birds 7. Cretan Bull 8. Diomedes' Mares 9. Hippolyte's Girdle 10. Cattle of Geryon
UCLA - PSYCH - 10
Scientific Methods In Psychology Theory: an explanation that fits many observations and makes valid predictions Hypothesis: a clear predictive statement Dependent variables: the item that an experimenter measures to determine how it was affected Inde
UCLA - PSYCH - 10
1/14 week 2 Frontal Lobe (huge in size) : planning of movements, working memory events that happened very recently, including Primary motor cortex (pre-motor cortex): fine movement control Parietal Lobe: body sensations, Including primary somatosens
UCLA - PSYCH - 10
1/16/09 2nd week Homunculus Sematosensory cortex (Parietal Lobe) Motor cortex (Frontal Lobe) Measuring Brain Activity Electroencephalographs &amp; Magnetoencephalographs (EEGs and MEGs) record electrical and magnetic activity. Positron emission tomograph
UCLA - LING - 1
Linguistic Homework 31.Zhe Chen Discussion 1QChimpanzees cannot talk, not least because their larynx - as in all other mammals except us - is high in the throat and serves as a valve to stop water running down their windpipes as they drink. Only
UCLA - PSYCH - 10
Class notes 2/11/08 I. Intelligence and Intelligence tests a. What is intelligence i. Ability to judge, comprehend and reason ii. Ability to deal with novel situations iii. Mental abilities that allow one to adapt to, shape or select one's environmen
UCLA - PSYCH - 10
1/28 Monday 4th weekHuman developmentInfancy Prenatal development: zygote fertilized egg cell Embryo 2 8 weeks 7 weeks brain regions developed enough to produce movements 36 weeks hear and eye movement The maternal-fetal connection Everything the
UCLA - PSYCH - 10
02/06/2008 Cognition and Language1. Cognition = thinking, gaining knowledge, dealing with knowledge, solving problems, mental imagery. 2. Language = a system of arbitrary symbols that can be combined to create an infinite # of Categorization Format
UCLA - LING - 1
Zhe Chen Ling 1 Discussion 1R Prescriptive grammar is a stylistic rule of language use. It what you should say, but not what you say. A prescriptive grammar of English can be &quot;don't use double negative.&quot; However, a violation of this rule works fine i
UCLA - PSYCH - 10
2/20/08 Wednesday 7th Week Psych 10 NotesEmotionsEmotion is: Temporary experience, positive or negative, felt/sensed as happening to the self, influenced by Metal assessment of the situation, learned responses, physiological responses Used to comm
UCLA - PSYCH - 10
2/25/08 Wednesday 8th Week Psych 10 NotesSocial PsychologyCooperation and competition Altruism: What determines whether we'll help and intervene? It depends Bystander Apathy People sometimes fail to intervene during a crime or accident The presenc
UCLA - PSYCH - 10
PERSONALITYWhat makes people differ in behavior and disposition, anyway? Heredity monozygotic (identical) twins ten to resemble each other more strongly than other relatives Heredity biological relatives tend to resemble each other more than adopt
UCLA - PSYCH - 10
Psychology 10 notes, 03/03/2008, Monday, 9th WeekPsychological DisordersDISORDERS Anxiety disorders Mood Schizophrenia and psychotic disorders Impulse control disorders Substance abuse disorders Somatoform disorders Eating disorders Sexual disorde
UCLA - PSYCH - 10
Psych 10 notes 9th week 03/05/2008 WednesdayPsychological DisordersDefining abnormal behavior Demonic possession Brain fag syndrome Running amok An American example: Multiple personality disorder The split personality syndrome dissociative identi
UCLA - PSYCH - 10
Positive Symptoms Disordered thinking = deficits in attention, difficult in switching rules and routines. Positive symptoms are behavior that re notable because of their presence (hallucinations and delusion) Negative symptoms are behaviors that are
UCLA - PSYCH - 10
03/10/2008 Monday Psych 10 Notes 10th WeekSchool of Psychotherapy (Continued)Psychoanalysis Psychoanalysis uses free association and transference to bring unconscious material to consciousness This produces catharsis, the release of pent0up emotio
UCLA - PSYCH - 10
Psych 10 notes 03/12/2008 Wednesday Treatment for: Phobia o Behavior therapy for phobias o One type is : Systematic desensitization gradual exposure to the object under controlled conditions Virtual reality is now being employed for this kind of the
UCLA - PSYCH - 10
1/18/08 Friday Psych 10 2nd WeekAction PotentialThe language of neurons is the action potential Electrochemical impulse that travels at constant strength Either excitatory (yes) or inhibitory (no) Resting potential the neuron is a rest (no actio
UCLA - LING - 1
Linguistic Homework 27)Zhe Chen Discussion 1QNo. A wolf would not have a language similar to human because they do not equip with theability of word order language acquisition. First, Human language is very creative. It can combine basic lingu
UCLA - PSYCH - 10
3rd Week, Wednesday, 01/23/08 Today's Lecture Vision Hearing Smell Taste Cutaneous senses Rod and cones are special neurons. (cover from last lecture)The Feature-Detector Approach Brain analyzes complex visual stimuli by breaking them into componen
UCLA - PSYCH - 10
01/30 Wednesday 4th week Learning = any relatively permanent change in behavior that's based upon experience Social Learning We learn about many behaviors before we attempt them for the first time Observing the behaviors of others and from imaging th
UCLA - LING - 1
Linguistic HW 41) Page 108, 4. a. Terrorized: bound root, inflectional suffix b. Uncivilized: free root, derivational infix c. Terrorize: bound root, derivational suffix d. Lukewarm: bound root, derivational prefix e. Impossible: bound root, derivat
UCLA - LING - 1
Linguistic HW 5Zhe Chen Discussion 1Q 11. a) Martha found a lovely pillow for the couch. 1. Movement: A lovely pillow, Martha found for the couch. 2. Stand-alone test: Q: What did Martha find? A: A lovely pillow. 3. Pronoun replacement test: Martha
UCLA - LING - 1
Linguistic HW 6Zhe Chen Ling 1, Discussion 1Q1. Studies have shown there are some obvious connections among languages. By finding patterns like these, different languages can be grouped together as members of a language family. The only way you c
William & Mary - PSYCH - 202
PSYCHOLOGY AS A SOCIAL SCIENCEChapter One- Reading NotesPsychology came from two Greek words, psyche, meaning soul and logos referring to the study of a subject Psychology emerged 125 years ago as a scientific discipline Psychology was created by c
William & Mary - PSYCH - 202
PSYCHOLOGY AS A SOCIAL SCIENCEChapter Two- Reading NotesThree goals of psychologists: 1. measurement and description- need measurement techniques that make it possible to describe behavior clearly and precisely 2. understanding and prediction- to e
William & Mary - PSYCH - 202
PSYCHOLOGY AS A SOCIAL SCIENCEChapter Nine- Reading NotesPsychological test- standardized measure of a sample of a person's behavior. They measure individual differences that exist among people in abilities, aptitudes, interests and aspects of pers
William & Mary - PSYCH - 202
PSYCHOLOGY AS A SOCIAL SCIENCEChapter Eleven- Reading NotesZygote- one celled organism formed by the union of sperm and egg, conception Prenatal period- conception until birth, nine months of pregnancy Prenatal period is divided into three phases:
William & Mary - PSYCH - 202
PSYCHOLOGY AS A SOCIAL SCIENCEChapter Twelve- Reading NotesDistinctiveness- each person has their own distinctive set of personality traits Personality is used to explain stability of a person's behavior over time (consistency) and behavioral diffe
William & Mary - PSYCH - 202
PSYCHOLOGY AS A SOCIAL SCIENCEChapter Thirteen- Reading NotesBiopsychosocial model physical illness is caused by a complex interaction of biological, psychological and sociocultural factors Health psychology concerned with how psychological facto
William & Mary - PSYCH - 202
PSYCHOLOGY AS A SOCIAL SCIENCEChapter Fourteen- Reading NotesMedical model of abnormal behavior says it is useful to think of abnormal behavior as a disease Diagnosis involves distinguishing one illness from another Etiology apparent causation a
William & Mary - PSYCH - 202
PSYCHOLOGY AS A SOCIAL SCIENCEChapter Sixteen- Reading NotesSocial psychology concerned with the way individuals' thoughts, feelings and behaviors are influenced by others Social psych focuses on six broad topics 1. person perception 2. attributio
William & Mary - PSYCH - 202
PSYCHOLOGY AS A SOCIAL SCIENCEChapter Fifteen- Reading NotesTreatment of Psychological Disorders can be broken into three groups Insight Therapies &quot;talk therapy&quot; in tradition of Freud's psychoanalysis Behavioral Therapies based on the principles
William & Mary - PSYCH - 202
PSYCHOLOGY AS A SOCIAL SCIENCEChapter Sixteen- Reading NotesSocial psychology concerned with the way individuals' thoughts, feelings and behaviors are influenced by others Social psych focuses on six broad topics 1. person perception 2. attributio
Wisconsin - STAT - 301
Model Project Number 1B: Commitment StudyRelationship advice is one thing females love to give. The issue I chose for my study is on whether or not a woman would stay committed to the relationship/marriage after learning their significant other had
Wisconsin - PSY - 301
Reflection Paper The past semester in Educational Psychology 321, I have had the opportunity to be exposed to numerous theories, methods, and research findings in the field of adolescent development. Information that I have learned in previous course
Arizona - TRAD - 104
Myths about Herakles Athloi (Greek name for Labors, similar to athlete) Parerga (parergon-singular) Various cities all wanted a piece of the Herakles myth Praxeis (praxis- singular) Means actions, but in terms of herakles, has a military connotation
Pima CC - ASTRONOMY - 105
Flandrau Planetarium 05/09/07Ring World Saturn- Ancient GodAfter visiting the Flandrau Science Center and viewing Ring World in the Planetarium Theater, I had gained a better cosmic perspective of Saturn and it's moon Titan. The show was based on
Rutgers - MEDIA - 102
ABC Reshapes the Evening News for the WebBy BRIAN STELTER Published: October 12, 2007 2007 The New York Times, Inc. Huddled with a producer in an editing suite on a recent Friday afternoon, the ABC News correspondent Bill Blakemore enthusiastically
Rutgers - MEDIA - 102
Big Radio Makes a Grab for Internet ListenersBy JEFF LEEDS Published: June 12, 2007 2007 The New York Times, Inc. Last week a radio D.J. known as Vibegrrl, who works the midday shift on Hot 99.5, a Washington pop station, offered her listeners the
Rutgers - MEDIA - 102
Caught on Film: A Growing Unease in HollywoodBy LAURA M. HOLSON Published: August 19, 2006LOS ANGELES, Aug. 18 - For many here, Stacey Snider was the Hollywood executive who had it all. As chairwoman of Universal Pictures, she hobnobbed with celeb
Rutgers - MEDIA - 102
CDs Will Die But Net Music May Be a Business BubbleSat Jan 24,12:23 PM ET Add Technology - Reuters Internet Report to My Yahoo!By Bernhard Warner, European Internet CorrespondentCANNES, France (Reuters) - Music downloads will render the ubiquito
Rutgers - MEDIA - 102
NBC in Deal With Amazon to Sell Shows on the WebBy BROOKS BARNES Published: September 5, 2007 2007 The New York Times, Inc. NBC Universal significantly deepened its relationship with Amazon's digital video download service after a dispute with Appl
Rutgers - MEDIA - 102
Changing Its TuneBy RICHARD SIKLOS Published: September 15, 2006 2006 The New York Times, Inc. The radio industry keeps losing people like Danny C. Costa, a senior at Boston University who grew up listening to radio in New York and New Jersey.For
Rutgers - MEDIA - 102
NBC Taking Big Step Back From TelevisionOld Media Undergoes A Digital MakeoverBy Frank Ahrens Washington Post Staff Writer Friday, October 20, 2006; Page A01 2006 WASHINGTON POST, INC.NBC Universal announced sweeping cuts to its television opera
Rutgers - MEDIA - 102
NBC to Offer Downloads of Its ShowsBy BILL CARTER Published: September 20, 2007 2007 The New York Times, Inc. NBC Universal said yesterday that it would soon permit consumers to download many of NBCs most popular programs free to personal computers