Search

Search Funnelback University

Search powered by Funnelback
91 - 140 of 382 search results for news
  1. Fully-matching results

  2. MODULE 8p - Applets - Trials B

    https://www.cl.cam.ac.uk/teaching/1999/FoundsProg/MODULE8p.html
    10 Nov 2000: Compile this using the javac command: $ javac AppletB.java Two new data fields augment String s and the inherited data fields. ... pressed"; AppletB.this.paint(AppletB.this.getGraphics()); // new statement System.out.println(AppletB.this.s); } } Don't
  3. 5. Cost comparison

    www.tcm.phy.cam.ac.uk/~pdh1001/papers/paper4/node5.html
    7 Jan 2000: Next: 6. Results Up: Parallel fast Fourier transforms Previous: 4. New parallel implementation.. ... Next: 6. Results Up: Parallel fast Fourier transforms Previous: 4. New parallel implementation.
  4. MODULE 3p - A Java Object

    https://www.cl.cam.ac.uk/teaching/1999/FoundsProg/MODULE3p.html
    10 Nov 2000: the program took three steps to set up a new Square for jack. ... Area = " this.area() "n"; } } Note that "n" simply means "start a new line".
  5. MODULE 8

    https://www.cl.cam.ac.uk/teaching/1999/FoundsProg/MODULE8.html
    10 Nov 2000: MODULE 8 - SHEET 1. public class ThreadIntro { public static void main(String[] args) { ThreadJack jack = new ThreadJack(); ThreadJill jill = new ThreadJill(); jack.start(); jill.start(); } } class ThreadJack extends Thread { public void ... k); else if
  6. MODULE 6

    https://www.cl.cam.ac.uk/teaching/1999/FoundsProg/MODULE6.html
    10 Nov 2000: MODULE 6 - SHEET 1. public class PersonalData { public static void main(String[] args) { Person[] p = {new Person("George", 34, 1.71f), new Person("Betty", 22, 1.76f), new Person("Charles", 24, ... 1.79f), new Person("Hanna", 29, 1.66f), new
  7. MODULE 10p - Contained Classes

    https://www.cl.cam.ac.uk/teaching/1999/FoundsProg/MODULE10p.html
    10 Nov 2000: This illustrates nothing new except the concept of a filter which in this case is rather a simple one. ... IntFilter infil = new Jack(); in which class Jack, declared elsewhere, implemented the interface IntFilter.
  8. 11 Jan 2000: The Structural Engineer, 51, 147-154 (1973). 35. C.R. Calladine, 'A new thermodynamic diagram for representing steady one-dimensional compressible fluid flow', J. ... Gupta, pp 71-97, Wiley Eastern, New Delhi (1993). 104. C.R. Calladine, "Causes of
  9. MODULE 9

    https://www.cl.cam.ac.uk/teaching/1999/FoundsProg/MODULE9.html
    10 Nov 2000: Robinson public class BufferExample { public static void main(String [] args) { Buffer buf = new Buffer(); Consumer cons = new Consumer(buf); cons.start(); try { for (int i = 1; i<=7; i++) ... MODULE 9 - SHEET 3. public class EvalIntro { public static
  10. MODULE 9q - Class Shape Concluded

    https://www.cl.cam.ac.uk/teaching/1999/FoundsProg/MODULE9q.html
    10 Nov 2000: If a new release required extra code this would go in the once-off method rather than in the duplicated ones. ... Leaving Sortable as an interface permits any new class to implement Sortable AND inherit from some other class.
  11. Diagrams 2000 Call for Papers

    https://www.cl.cam.ac.uk/events/diag2000/cfp.html
    15 Jun 2000: please distribute these ----. Diagrams 2000 is the first event in a new interdisciplinary conference series on the Theory and Application of Diagrams. ... Thus, the workshop series mentioned above have decided to merge into Diagrams 2000, as the single
  12. https://www.cl.cam.ac.uk/~pes20/confer2.txt

    https://www.cl.cam.ac.uk/~pes20/confer2.txt
    8 Aug 2000: uk. At the same time send a paper copy with a cheque to Caroline Bean Computer Laboratory New Museums Site Pembroke Street Cambridge UK CB2 3QG Caroline will be away from
  13. MODULE 5q - An interface

    https://www.cl.cam.ac.uk/teaching/1999/FoundsProg/MODULE5q.html
    10 Nov 2000: These changes from private to public constitute more bad news. The principal reason that the programming style is so bad is most easily appreciated if you consider adding a new child ... radiusthis.radius; } public boolean compare(Shape that) // new EVIL
  14. Survey of Robot Reasoning in AI

    https://www.cl.cam.ac.uk/~afb21/publications/masters/node11.html
    17 Nov 2000: Typical research topics (in order of increasing abstraction) are:. 1. New manipulator, arm, and sensor designs. ... New manipulator developments include general purpose devices such as multi-fingered manipulators (e.g.
  15. Envisionment of Motion through Contact States

    https://www.cl.cam.ac.uk/~afb21/publications/masters/node71.html
    17 Nov 2000: Updating the contact set to reflect a change of state involves adding new contacts to the set, and removing all reference to contacts that have been separated. ... A higher level of reasoning in the program makes use of this contact set information to
  16. Professional Practice and Ethics (50% option only)

    https://www.cl.cam.ac.uk/DeptInfo/CST00/node18.html
    20 Sep 2000: Ownership of computer software: a new problem in intellectual property rights.
  17. MODULE 7q - Redeeming Class Shape

    https://www.cl.cam.ac.uk/teaching/1999/FoundsProg/MODULE7q.html
    10 Nov 2000: Shape incorporates the new abstract method rank() as well as the renamed compare() method, now called greaterThan(). ... Every new Shape descendant defines its own chosen feature as the rank() and all is well.
  18. Learning Day

    https://www.cl.cam.ac.uk/DeptInfo/CST00/node17.html
    20 Sep 2000: New York: Wiley. Next: Professional Practice and Ethics Up: Michaelmas Term 2000: Part Previous: Introduction to Computer Science.
  19. Programming in Java

    https://www.cl.cam.ac.uk/DeptInfo/CST00/node22.html
    20 Sep 2000: More control structures. Defining new types. Design and testing programs in Java.
  20. General Query Expansion Techniques for Spoken Document Retrieval

    mi.eng.cam.ac.uk/reports/full_html/jourlin_esca99.html/
    2 Mar 2000: The new document universe is defined with a set of query atomic terms. ... An example at this stage would look like :. Query. : "Trains in New York".
  21. Comparative Programming Languages

    https://www.cl.cam.ac.uk/DeptInfo/CST00/node46.html
    20 Sep 2000: Smalltalk. History, syntax, classes, declaration, example showing the definition of new classes and methods.
  22. MODULE 8q - Threaded Code

    https://www.cl.cam.ac.uk/teaching/1999/FoundsProg/MODULE8q.html
    10 Nov 2000: SharedObject pot = new SharedObject(); ThreadA tA = new ThreadA(pot); ThreadB tB = new ThreadB(pot); tA.start(); tB.start(); } } class SharedObject { public synchronized void get(String s, long n) { for (int ... A MINOR ADDITION TO THE PROGRAM Next add
  23. HOME GEOTECHNICAL CENTRIFUGES

    www-g.eng.cam.ac.uk/125/achievements/centrifuges/index.htm
    27 Jun 2000: In this case a brief design study was all that was necessary to indicate that a completely new arm would be the only satisfactory approach to the conventional hinge solution.
  24. A Method for Direct Audio Search with Applications to Indexing and…

    mi.eng.cam.ac.uk/reports/full_html/johnson_icassp00.html/
    16 Jun 2000: Method. CPUs. non-news. news. window, 5@1s. 3514. 5459s=60.8%. 110s=0.5%. window, 10@2s. ... windows. (s). non-news. news. 5s long, 1s shift. 0. 60.8%. 0.49%.
  25. General Evaluation of a Qualitative Representation

    https://www.cl.cam.ac.uk/~afb21/publications/masters/node91.html
    17 Nov 2000: reasoning. Some evaluation criteria for a qualitative representation are:. 1. What new facilities does the representation provide? ... PDO/EPB provides new qualitative methods for representing shape and relative position of objects.
  26. https://www.cl.cam.ac.uk/~lp15/archive/ERRATA.txt

    https://www.cl.cam.ac.uk/~lp15/archive/ERRATA.txt
    20 Jun 2000: page 229: now there is another examples directory, IMP (a semantics equivalence proof for an imperative language) Higher-Order Logic page 243: Pow is a new constant of type 'a set = ... These new sections are available separately as the file
  27. Information Theory and Coding

    https://www.cl.cam.ac.uk/DeptInfo/CST00/node67.html
    20 Sep 2000: Cover, T.M. & Thomas, J.A. (1991). Elements of Information Theory. New York: Wiley.
  28. Spoken Document Retrieval for TREC-7 at Cambridge University

    mi.eng.cam.ac.uk/reports/full_html/johnson_trec7.html/
    30 Mar 2000: This was useful, but we went further and developed a new pair of stoplists specifically for the broadcast news data. ... to be made equivalent. A stemming exceptions list was also made to compensate for known problems with the Porter stemmer, such as
  29. HCI = Engineering + Psychology

    https://www.cl.cam.ac.uk/teaching/2000/AGraphHCI/HCI/hcinotes.html
    6 Nov 2000: Software that is usable for its purpose is sometimes described by programmers as "intuitive" (easy to learn, easy to remember, easy to apply to new problems) or "powerful" (efficient, effective). ... Others required new research which was conducted in
  30. MODULE 4q - An abstract class

    https://www.cl.cam.ac.uk/teaching/1999/FoundsProg/MODULE4q.html
    10 Nov 2000: By modifying the Block.java program, or otherwise, set up a new file ShapeA.java containing the code below. ... public class ShapeA { public static void main(String[] args) { Square jack = new Square("Trafalgar", 2d); Circle jill = new Circle("Arctic",
  31. Spoken Document Retrieval for TREC-8 at Cambridge University

    mi.eng.cam.ac.uk/reports/full_html/johnson_trec8.html/
    30 Mar 2000: news programs provided along with a list of manually-generated story (or document) boundaries. ... 1996 to Jan. 1998 (from the Primary Source Media Broadcast News collection) and Jan.
  32. MODULE 5p - Packages

    https://www.cl.cam.ac.uk/teaching/1999/FoundsProg/MODULE5p.html
    10 Nov 2000: fhk1/public_html/java/classes and another directory sack is created in this new directory. ... Compile the new version of PackTest.java: $ javac PackTest.java There should be no complaints.
  33. MODULE 10

    https://www.cl.cam.ac.uk/teaching/1999/FoundsProg/MODULE10.html
    10 Nov 2000: MODULE 10 - SHEET 1. public class DiningPhilosophers { private static final int SIZE = 5; public static void main(String[] args) { Fork[] forks = new Fork[SIZE]; for (int f = 0; f<SIZE; f++) ... forks[f] = new Fork(f); Thread[] phil = new Thread[SIZE];
  34. Celebrating Time: Fitzwilliam Exhibition opens | University of…

    https://www.cam.ac.uk/news/celebrating-time-fitzwilliam-exhibition-opens
    12 Jan 2000: Search. Search. Celebrating Time: Fitzwilliam Exhibition opens. News. Celebrating Time: Fitzwilliam Exhibition opens.. ... With the dawning of a new millennium, a Fitzwilliam Museum exhibition and the annual Darwin Lecture Series will both address the
  35. Learning Day

    https://www.cl.cam.ac.uk/DeptInfo/CST00/node100.html
    20 Sep 2000: New York: Wiley. Next: Mathematics for Computation Theory Up: Michaelmas Term 2000: Part Previous: Introduction to Computer Science.
  36. MODULE 6q - Exceptions

    https://www.cl.cam.ac.uk/teaching/1999/FoundsProg/MODULE6q.html
    10 Nov 2000: try { n = a[p++]; if (n==0) throw new BadZeroException(); if (n==13) throw new BadLuckException(); } catch(BadZeroException e) // catch 3 { System.out.print("---> "); } return n; } } class BadLuckException extends Exception { public ... Finished // Read
  37. The Cambridge University Spoken Document Retrieval System

    mi.eng.cam.ac.uk/reports/full_html/johnson_icassp99.html/
    8 Mar 2000: Unfortunately the Porter algorithm suffers from some problems for example mapping news'' to new'' but not equating government'' and governmental''. ... Furthermore new language models were estimated from an extended set of broadcast news transcripts and
  38. Spatial Reasoning for Robots: A Qualitative Approach

    https://www.cl.cam.ac.uk/~afb21/publications/masters/allthesis.html
    17 Nov 2000: Victoria University of Wellington. October 1988. Abstract. This thesis presents a new approach to the problem of shape representation for high level robot reasoning tasks. ... The results of this investigation are applicable both to the field of robotics,
  39. CUED SEM Bibliography

    www-g.eng.cam.ac.uk/125/achievements/oatley/bibweb.htm
    10 Aug 2000: PhD Dissertation, Cambridge University (1958). Oatley C.W: The scanning electron microscope New Sci. ... Reinhold, New York), (1961). Thornley, R.F.M. Recent developments in scanning electron microscopy.
  40. Abstract of Thesis "Argumentative Zoning: Information Extraction …

    https://www.cl.cam.ac.uk/~sht25/thesis/abstract.html
    7 Jul 2000: We present a new type of analysis for scientific text which we call Argumentative Zoning.
  41. MODULE 2

    https://www.cl.cam.ac.uk/teaching/1999/FoundsProg/MODULE2.html
    10 Nov 2000: save a line write: jack = new int[4]; // int[] jack = new int[4]; jack[1] = 10; jack[3] = jack[1] - 5; jack[0] = jack[3]; jack[k1] = 6; int sum = 0;
  42. Spatial Representation and Reasoning in Robotics

    https://www.cl.cam.ac.uk/~afb21/publications/masters/node10.html
    17 Nov 2000: This is particularly noticeable in the field of qualitative physics, because the distinctive nature of the field is largely in the novel representation used, and a completely new approach to computer
  43. Two Methods for Qualitative Representation of Shape and Space

    https://www.cl.cam.ac.uk/~afb21/publications/masters/node36.html
    17 Nov 2000: The qualitative geometric representation incorporates ideas and techniques that have been described in the previous two chapters, and are now used in a new overall context.
  44. The Cambridge University Multimedia Document Retrieval Demo System

    mi.eng.cam.ac.uk/reports/full_html/tuerk_sigir00demo.html/
    14 Aug 2000: This system gives a word error rate of 15.9% on the 1998 Hub4 broadcast news evaluation data. ... J. J. Odell, P. C. Woodland, and T. Hain. The CUHTK-Entropic 10xRT Broadcast News Transcription System.
  45. Who Spoke When? - Automatic Segmentation and Clustering for…

    mi.eng.cam.ac.uk/reports/full_html/johnson_eurospeech99.html/
    2 Mar 2000: The 1996 Hub-4 Broadcast News Transcription development data was used for all the experiments reported in this paper. ... A new frame-based efficiency is therefore defined. The previous formulae remain the same but the definitions are altered to:.
  46. MODULE 6p - Applets - Trials A

    https://www.cl.cam.ac.uk/teaching/1999/FoundsProg/MODULE6p.html
    10 Nov 2000: The explanation can wait a moment. First, using the same HTML as before, run the appletviewer program on this new applet: $ appletviewer AppletA.html & The appearance of the applet window ... After invoking the paint method, the running program hangs up.
  47. New Centre for Legal History: the opening of the Maitland Legal…

    https://www.cam.ac.uk/news/new-centre-for-legal-history-the-opening-of-the-maitland-legal-history-room
    22 Feb 2000: News. New Centre for Legal History: the opening of the Maitland Legal History Room.. ... The University's Law Faculty has a new centre for studying legal history.
  48. Improving Retrieval on Imperfect Speech Transcriptions

    mi.eng.cam.ac.uk/reports/full_html/jourlin_sigir99.html/
    8 Mar 2000: This paper presents the results from adding several forms of query expansion to our retrieval system running on several sets of transcriptions of broadcast news from the 1997 TREC-7 spoken ... A parallel corpus of 18628 documents from manually
  49. Class-based language model adaptation using mixtures of word-class…

    mi.eng.cam.ac.uk/reports/full_html/moore_icslp00.html/
    2 Nov 2000: S. Sekine, Automatic Sublanguage Identification for a New Text''; Second Annual Workshop on Very Large Corpora, Kyoto. ... Whittaker and S.J. Young, The 1997 HTK Broadcast News Transcription System''; DARPA Broadcast News 1998 Transcription and
  50. Spatial Reasoning in Qualitative Physics

    https://www.cl.cam.ac.uk/~afb21/publications/masters/node5.html
    17 Nov 2000: Qualitative physics is a field of research that provides a new repertoire of reasoning techniques for computers.
  51. Naive Physics

    https://www.cl.cam.ac.uk/~afb21/publications/masters/node28.html
    17 Nov 2000: It specifically did not recommend the construction of programs or new formal description methods.

Refine your results

Format

Search history

Recently clicked results

Recently clicked results

Your click history is empty.

Recent searches

Recent searches

Your search history is empty.