Control Data Corporation

Control Data Systems, Inc.





WorldCat Identities



google.charts.load('current', packages: ['corechart']);
google.charts.setOnLoadCallback(drawChart);
function drawChart()
var options =
height: 200,
legend: position: 'top', maxLines: 3 ,
bar: groupWidth: '75%' ,
isStacked: true,
colors: ['#FF7600', '#409a3c', '#2178b5'],
vAxis:
baselineColor: '#fff',
gridlineColor: '#fff',
textPosition: 'none'

;
var data = google.visualization.arrayToDataTable([
['', 'By', 'Posthumously by', 'About',
role: 'annotation' ],

['1950-1951', 0, 0, 0, ''],

['1951-1952', 0, 0, 0, ''],

['1952-1953', 0, 0, 0, ''],

['1953-1954', 0, 0, 0, ''],

['1954-1955', 0, 0, 0, ''],

['1955-1956', 0, 0, 0, ''],

['1956-1957', 0, 0, 0, ''],

['1957-1958', 0, 0, 0, ''],

['1958-1959', 0, 0, 0, ''],

['1959-1960', 5, 0, 0, ''],

['1960-1961', 0, 0, 0, ''],

['1961-1962', 10, 0, 0, ''],

['1962-1963', 15, 0, 0, ''],

['1963-1964', 30, 0, 0, ''],

['1964-1965', 35, 0, 0, ''],

['1965-1966', 30, 0, 0, ''],

['1966-1967', 35, 0, 0, ''],

['1967-1968', 30, 0, 0, ''],

['1968-1969', 30, 0, 0, ''],

['1969-1970', 35, 0, 5, ''],

['1970-1971', 35, 0, 5, ''],

['1971-1972', 35, 0, 10, ''],

['1972-1973', 35, 0, 0, ''],

['1973-1974', 35, 0, 0, ''],

['1974-1975', 35, 0, 5, ''],

['1975-1976', 35, 0, 0, ''],

['1976-1977', 30, 0, 0, ''],

['1977-1978', 35, 0, 0, ''],

['1978-1979', 35, 0, 0, ''],

['1979-1980', 35, 0, 5, ''],

['1980-1981', 30, 0, 25, ''],

['1981-1982', 35, 0, 20, ''],

['1982-1983', 40, 0, 30, ''],

['1983-1984', 35, 0, 25, ''],

['1984-1985', 35, 0, 15, ''],

['1985-1986', 30, 0, 20, ''],

['1986-1987', 25, 0, 5, ''],

['1987-1988', 25, 0, 0, ''],

['1988-1989', 25, 0, 0, ''],

['1989-1990', 20, 0, 0, ''],

['1990-1991', 15, 0, 0, ''],

['1991-1992', 15, 0, 0, ''],

['1992-1993', 5, 0, 15, ''],

['1993-1994', 10, 0, 5, ''],

['1994-1995', 0, 0, 5, ''],

['1995-1996', 0, 0, 5, ''],

['1996-1997', 0, 0, 10, ''],

['1997-1998', 0, 0, 15, ''],

['1998-1999', 0, 0, 0, ''],

['1999-2000', 0, 0, 0, ''],

['2000-2001', 0, 0, 0, ''],

['2001-2002', 0, 0, 0, ''],

['2002-2003', 0, 0, 0, ''],

['2003-2004', 0, 0, 0, ''],

['2004-2005', 0, 0, 5, ''],

['2005-2006', 0, 0, 20, ''],

['2006-2007', 5, 0, 10, ''],

['2007-2008', 5, 0, 5, ''],

['2008-2009', 0, 0, 5, ''],

['2009-2010', 0, 0, 5, ''],

['2010-2011', 0, 0, 0, ''],

['2011-2012', 0, 0, 5, ''],

['2012-2013', 0, 0, 5, ''],

['2013-2014', 0, 0, 10, ''],

['2014-2015', 0, 0, 10, ''],

['2015-2016', 0, 0, 5, ''],

['2016-2017', 0, 0, 0, ''],

['2017-2018', 0, 0, 0, ''],

['2018-2019', 0, 0, 0, ''],

['2019-2020', 0, 0, 0, ''],

['2020-2021', 0, 0, 0, ''],

]);
var chart = new google.visualization.ColumnChart(document.getElementById('chart_div'));
chart.draw(data, options);
;

function bringBack(sourceKey, targetKey, oclcNum)
comment=prompt("Enter an optional comment and press "OK" or press "Cancel" to end", "");
if(comment!=null)
window.location="/identities/move?undo&sourceKey="+sourceKey+"&targetKey="+targetKey+"&oclcNum="+oclcNum+"&originalIdentity="+targetKey+"&comment="+comment;


function sendBack(sourceKey, targetKey, oclcNum)
comment=prompt("Enter an optional comment and press "OK" or press "Cancel" to end", "");
if(comment!=null)
window.location="/identities/move?undo&sourceKey="+sourceKey+"&targetKey="+targetKey+"&oclcNum="+oclcNum+"&originalIdentity="+sourceKey+"&comment="+comment;


function getElementsByClassName(classname, node)
if(!node)
node = document.getElementsByTagName("body")[0];
var a=[];
var re=new RegExp('\b' + classname + '\b');
var els=node.getElementsByTagName("*");

for(var i=0; els.length>=i; i++)
if(re.test(els[i].className))
a.push(els[i]);
return a;

function turnEditEntriesOn(node)
var entries=getElementsByClassName('editEntry', node);
if (entries)

for (var i = 0; entries.length>=i; i++)
entries[i].style.display="block";


document.getElementById('identitiesonSwitch').style.display='none';
document.getElementById('identitiesoffSwitch').style.display='inline';

function turnEditEntriesOff(node)
var entries=getElementsByClassName('editEntry', node);
if (entries)
for (var i = 0; entries.length>=i; i++)
entries[i].style.display="none";


document.getElementById('identitiesonSwitch').style.display='inline';
document.getElementById('identitiesoffSwitch').style.display='none';




Control Data Corporation



Overview









Works: 1,170
works in
1,524
publications in
2
languages and
5,457
library holdings

Genres:
Conference papers and proceedings 
Periodicals 
Directories 
Observations 

Roles:
Publisher, Other
Classifications: HE5623,
001.64


Publication Timeline

.



Most widely held works about
Control Data Corporation


  • The eye for innovation : recognizing possibilities and managing the creative enterprise by Robert M Price(

    )



  • William C. Norris : portrait of a maverick by James C Worthy(
    Book
    )



  • New frontiers for business leadership by William C Norris(
    Book
    )



  • Entrepreneurship in training : the multinational corporation in Mexico and Canada by Michael A DiConti(
    Book
    )



  • CDCCRAY by Clayton J Guest(
    Book
    )



  • The private sector in state correctional industries : the Control Data program in Minnesota by Keon S Chi(
    Book
    )



  • HR pioneers : a history of human resource innovations at Control Data Corporation by Mark Jensen(

    )



  • Generation of wealth : the rise of Control Data and how it inspired an era of innovation and investment in the Upper Midwest by Donald M Hall(
    Book
    )



  • Annual report by Control Data Corporation(

    )



  • In on the ground floor : the twentieth century automation revolution ; an autobiography by Herbert W Robinson(
    Book
    )



  • 1964 NASA RFP : solutions and timing analysis by Anatoly Kandiew(
    Book
    )



  • Control Data: military business & technological warfare by Corporate Information Center of the National Council of Churches(
    Book
    )



  • Building the control data legacy : the career of Robert M. Price by Robert M Price(
    Book
    )



  • Oral history interview with Lawrence Goldmuntz by Lawrence Goldmuntz(

    )



  • Corporate financial reports by Control Data Corporation(

    )



  • Oral history interview with Cecil E. "Chuck" Leith by Cecil E Leith(

    )



  • The eye for innovation : finding creative solutions to social and economic needs by Robert M Price(
    Book
    )



  • [Annual reports filed with the SEC] by Control Data Corporation(

    )



  • CYBERNET news(

    )



  • Control Data Corporation Records by Control Data Corporation(

    )



 

moreShow More Titles

fewerShow Fewer Titles




Most widely held works by
Control Data Corporation


Supercomputer applications by Robert W Numrich(
Book
)

2
editions published

in
1985
in
English
and held by
203 WorldCat member

libraries

worldwide

For the past three years, Control Data has cosponsored an applications symposium at one of its CYBER 205 customer sites. Approximately
125 participants from North America and Europe attended each of the three symposia. The Institute for Computational Studies
at Colorado State University hosted the first symposium at Fort Collins, Colorado, August 12-13, 1982. The second annual symposium
took place in Lanham, Maryland, and was hosted by the NASA Goddard Space Flight Center. This volume contains the proceedings
of the Supercomputer Applications symposium held October 31-November 1, 1984, at Purdue University, West Lafayette, Indiana.
The purpose of this volume is to provide a forum for users of Control Data's CYBER 205 supercomputer to exchange common experiences
and to discuss results of research projects performed on the computer. The unifying theme across the many disciplines is the
development of methods and techniques to exploit the computational power of the CYBER 205. Some­ what surprisingly, these
techniques are quite similar and apply to a wide range of problems in physics, chemistry, and engineering



Trends in bus transit financial and operating characteristics, 1960-1975 by Control Data Corporation(
Book
)

3
editions published

in
1978
in
English
and held by
149 WorldCat member

libraries

worldwide



1974 national transportation report : urban data supplement by Wells Research Company(
Book
)

3
editions published

in
1976
in
English
and held by
143 WorldCat member

libraries

worldwide



Proceedings by IEEE Computer Society Workshop on Computers in the Education and Employment of the Handicapped(
Book
)

4
editions published

in
1983
in
English
and held by
107 WorldCat member

libraries

worldwide



Temperature histories of commercial flights at severe conditions from GASP data by W. H Jasperson(
Book
)

1
edition published

in
1983
in
English
and held by
105 WorldCat member

libraries

worldwide



Taxicab operating characteristics by Control Data Corporation(
Book
)

5
editions published

in
1977
in
English
and held by
105 WorldCat member

libraries

worldwide



Simplified energy analysis using the modified bin method by David E Knebel(
Book
)

2
editions published

in
1983
in
English
and held by
102 WorldCat member

libraries

worldwide



Tabulations of ozonesonde data : 1963-1980 by W. H Jasperson(
Book
)

2
editions published

in
1984
in
English
and held by
98 WorldCat member

libraries

worldwide



Guidelines for library and media automated systems(
Book
)

3
editions published

in
1986
in
English
and held by
77 WorldCat member

libraries

worldwide



Flight summaries and temperature climatology at airliner cruise altitudes from GASP data by G. D Nastrom(
Book
)

1
edition published

in
1983
in
English
and held by
62 WorldCat member

libraries

worldwide




Successful business by Control Data Corporation(

)


in
English
and held by
58 WorldCat member

libraries

worldwide



The Top 1,500 private companies(

)


in
English
and held by
54 WorldCat member

libraries

worldwide



Ozone concentration by latitude, altitude, and month, near 80° W by R. W Wilcox(
Book
)

2
editions published

in
1977
in
English
and held by
48 WorldCat member

libraries

worldwide

To provide a convenient summary of presently available data on ozone concentrations, monthly and seasonal means and standard
deviations of ozone are presented in latitude-height cross-sections and tables. Results are given in each of two units: micrograms
per cubic meter, and parts per million by volume. Data are based on North American ozonesonde stations, 1962-75. (Author)



Predesign of the second-generation comprehensive helicopter analysis system(
Book
)

3
editions published

in
1978
in
English
and held by
35 WorldCat member

libraries

worldwide



Method of deriving orbital perturbing parameters from onboard optical measurements of an ejected probe or a natural satellite by C. B Grosch(
Book
)

2
editions published

in
1969
in
English
and held by
34 WorldCat member

libraries

worldwide



Trends in bus transit operations, 1960-1974 by Control Data Corporation(
Book
)

1
edition published

in
1977
in
English
and held by
31 WorldCat member

libraries

worldwide



Control Data Cyber 70 computer systems, models 72, 73, 74, 6000 computer systems ; FORTRAN reference manual, models 72, 73,
74, version 2.3, 6000 version 2.3.
by Control Data Corporation(
Book
)

14
editions published

between
1971
and
1974
in
English
and held by
26 WorldCat member

libraries

worldwide



Thinking about technology in schools : a 1988 snapshot(
Book
)

1
edition published

in
1989
in
English
and held by
25 WorldCat member

libraries

worldwide



The Oak Ridge Algol compiler for the Control Data Corporation 1604 : preliminary programmer's manual by L. L Bumgarner(

)

2
editions published

in
1964
in
English
and held by
25 WorldCat member

libraries

worldwide



Challenges to urban education--results in the making : a report of the Council of the Great City Schools(
Book
)

1
edition published

in
1987
in
English
and held by
23 WorldCat member

libraries

worldwide




 

moreShow More Titles

fewerShow Fewer Titles




Audience Level









0

Audience Level


1
  Kids General Special  

Audience level:
0.43
(from
0.22
for
The eye fo
... to
0.85
for
CYBERNET n
...)




WorldCat IdentitiesRelated Identities


  • Price, Robert M. 1930- Author plus


  • Norris, William C. 1911-2006 Author plus


  • Wells Research Company plus


  • Worthy, James C. Author plus


  • Jasperson, W. H. Author plus


  • Lewis Research Center plus


  • DiConti, Michael A. 1958- Author plus


  • Purdue University Computing Center plus


  • Numrich, Robert W. plus


  • Purdue University Center for Parallel and Vector Computing plus




Associated Subjects


Aeronautics, Commercial Atmospheric ozone Atmospheric temperature Buildings--Energy consumption Businesspeople Bus lines Canada CDC 6000 (Computer) Climatology Computer-assisted instruction Computer industry Computer programs Computers and civilization Control Data Corporation Corporations Creative ability in business CYBER 205 (Computer) Education, Urban--U.S. states Electronic data processing personnel--Training of Energy consumption--Simulation methods Entrepreneurship Flight simulators Global Atmospheric Research Programme Global temperature changes Helicopters--Aerodynamics Helicopters--Mathematical models Industries--Social aspects Information technology International business enterprises Libraries--Automation Mexico Microcomputers Middle West Minnesota Correctional Facility--Stillwater Norris, William C., Ozone People with disabilities--Education--Audio-visual aids Prison industries Public schools--U.S. states Securities Small business Stability of helicopters Supercomputers Taxicabs Technological innovations--Management Thermal stresses Transportation and state Transportation--Finance United States Urban transportation





Covers


The eye for innovation : finding creative solutions to social and economic needs


Alternative Names


controlled identityControl Data Systems, Inc.


CDC.

CDC (Control Data Corporation)

Control Data Corporation defunct supercomputer firm

Control Data Corporation коммерческая организация

Control Data (Firm)

קונטרול דאטה

コントロール・データ・コーポレーション

控制資料公司


Languages


English
(99)

Turkish
(1)









(function(i,s,o,g,r,a,m)function(),i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
)(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-45070317-1', 'worldcat.org');
ga('send', 'pageview');


setTimeout(function()var a=document.createElement("script");
var b=document.getElementsByTagName("script")[0];
a.src=document.location.protocol+"//dnn506yrbagrg.cloudfront.net/pages/scripts/0018/3695.js?"+Math.floor(new Date().getTime()/3600000);
a.async=true;a.type="text/javascript";b.parentNode.insertBefore(a,b), 1);

Popular posts from this blog

Log på Navigationsmenu

Creating second map without labels using QGIS?How to lock map labels for inset map in Print Composer?How to Force the Showing of Labels of a Vector File in QGISQGIS Valmiera, Labels only show for part of polygonsRemoving duplicate point labels in QGISLabeling every feature using QGIS?Show labels for point features outside map canvasAbbreviate Road Labels in QGIS only when requiredExporting map from composer in QGIS - text labels have moved in output?How to make sure labels in qgis turn up in layout map?Writing label expression with ArcMap and If then Statement?

Nuuk Indholdsfortegnelse Etyomologi | Historie | Geografi | Transport og infrastruktur | Politik og administration | Uddannelsesinstitutioner | Kultur | Venskabsbyer | Noter | Eksterne henvisninger | Se også | Navigationsmenuwww.sermersooq.gl64°10′N 51°45′V / 64.167°N 51.750°V / 64.167; -51.75064°10′N 51°45′V / 64.167°N 51.750°V / 64.167; -51.750DMI - KlimanormalerSalmonsen, s. 850Grønlands Naturinstitut undersøger rensdyr i Akia og Maniitsoq foråret 2008Grønlands NaturinstitutNy vej til Qinngorput indviet i dagAntallet af biler i Nuuk må begrænsesNy taxacentral mødt med demonstrationKøreplan. Rute 1, 2 og 3SnescootersporNuukNord er for storSkoler i Kommuneqarfik SermersooqAtuarfik Samuel KleinschmidtKangillinguit AtuarfiatNuussuup AtuarfiaNuuk Internationale FriskoleIlinniarfissuaq, Grønlands SeminariumLedelseÅrsberetning for 2008Kunst og arkitekturÅrsberetning for 2008Julie om naturenNuuk KunstmuseumSilamiutGrønlands Nationalmuseum og ArkivStatistisk ÅrbogGrønlands LandsbibliotekStore koncerter på stribeVandhund nummer 1.000.000Kommuneqarfik Sermersooq – MalikForsidenVenskabsbyerLyngby-Taarbæk i GrønlandArctic Business NetworkWinter Cities 2008 i NuukDagligt opdaterede satellitbilleder fra NuukområdetKommuneqarfik Sermersooqs hjemmesideTurist i NuukGrønlands Statistiks databankGrønlands Hjemmestyres valgresultaterrrWorldCat124325457671310-5