Richard Veryard on Uncertainty


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Complex Event Processing RSS News Richard Veryard on Uncertainty
# 1  
Old 08-13-2008
Richard Veryard on Uncertainty

Tim Bass
08-13-2008 01:31 AM
I enjoy reading Richard Veryard’s blog posts.* Richard does not have an agenda, per se, or at least not one I have identified.* Richard is not trying to sell us anything; he seeks facts and truth with an open, Zen mind.*

In his second post Faithful Representation 2*and continuation, Responding to Uncertainty, Richard explores models, reality and uncertainty.

I don’t have time to comment as much as I would like today.* However, I would like to conclude (today) that in the process of raw-event to decision-making,*one of the most important factors is the ability to assign likelihood (or certainty) to any detected situation.



Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. News, Links, Events and Announcements

Richard Stallman in Bangkok.

Richard M Stallman (RMS) will be giving the speech "Why School Should Use Open Source Software" at KIS International School, Huay-kwang Bangkok on 30th October 2009 at 19.30 Anybody who would like to come and hear his speech should go to FLossEd BK | Free & Open Source Solutions for... (0 Replies)
Discussion started by: Raattapoom
0 Replies

2. UNIX for Dummies Questions & Answers

Richard Steven's book

I am new to UNIX, only one year experience. Currently working on my SCSA exam. I have a question about the book I am going to read. should I read TCP -IP Illustrated Vol 1 2 3 before UNIX Network Programming or it really doesn't matter? I just want to follow the right path in order to... (2 Replies)
Discussion started by: uuontario
2 Replies

3. Shell Programming and Scripting

Request for some ebooks by Richard Stevens..

Hi, Request anyone of you guys to please forward me the Soft Copy of the following Books by Richard Stevens :- 1) UNIX Network Programming, Volume 2, Second Edition: Interprocess Communications, Prentice Hall. 2) UNIX Network Programming, Volume 1, Second Edition: Networking APIs: ... (1 Reply)
Discussion started by: marconi
1 Replies

4. UNIX for Dummies Questions & Answers

Uncertainty on disk usage report

Hi all, My system is running on RHEL4. I've just deleted 2 huge tablespaces from Oracle. Then I saw the disk usage. The report by df differs from the du. Do you know why they shows different results? Which one is correct? # df -h Filesystem Size Used Avail Use% Mounted... (1 Reply)
Discussion started by: mr_bold
1 Replies
Login or Register to Ask a Question
Number::Compare(3)					User Contributed Perl Documentation					Number::Compare(3)

NAME
Number::Compare - numeric comparisons SYNOPSIS
Number::Compare->new(">1Ki")->test(1025); # is 1025 > 1024 my $c = Number::Compare->new(">1M"); $c->(1_200_000); # slightly terser invocation DESCRIPTION
Number::Compare compiles a simple comparison to an anonymous subroutine, which you can call with a value to be tested again. Now this would be very pointless, if Number::Compare didn't understand magnitudes. The target value may use magnitudes of kilobytes ("k", "ki"), megabytes ("m", "mi"), or gigabytes ("g", "gi"). Those suffixed with an "i" use the appropriate 2**n version in accordance with the IEC standard: http://physics.nist.gov/cuu/Units/binary.html METHODS
->new( $test ) Returns a new object that compares the specified test. ->test( $value ) A longhanded version of $compare->( $value ). Predates blessed subroutine reference implementation. ->parse_to_perl( $test ) Returns a perl code fragment equivalent to the test. AUTHOR
Richard Clamp <richardc@unixbeard.net> COPYRIGHT
Copyright (C) 2002,2011 Richard Clamp. All Rights Reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
http://physics.nist.gov/cuu/Units/binary.html perl v5.18.2 2011-09-21 Number::Compare(3)