Aesthetic Measure of Alignment and Regularity

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Aesthetic Measure of Alignment and Regularity
# 1  
Old 08-25-2009
Aesthetic Measure of Alignment and Regularity

HPL-2009-98 Aesthetic Measure of Alignment and Regularity - Balinsky, Helen Y.; Wiley, Anthony J.; Roberts, Matthew W.
Keyword(s): Alignment, regularity, aesthetic rules, designer grid, automatic layout evaluation, the Hough transform
Abstract: To be effective as communications or sales tools, documents that are personalized and customized for each customer must be visually appealing and aesthetically pleasing. Producing perhaps millions of unique versions of essentially the same document not only presents challenges to the printing proces ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

How to measure IOPS?

Hi I have a system running solaris 10, and I intend to use a NetApp as its storage system. The application requires a throughput between the server and the storage 7000 disk IOPS (random IO sustained throughput with response time of 20 mili second and 16k block size). How to make sure that I... (6 Replies)
Discussion started by: fretagi
6 Replies

2. Shell Programming and Scripting

Tcl - how to report out metal layer usage in a design and measure its width and length?

Hi guys, I am very new to tcl here. would like to request some help please let say i have a design .it's a IC design . I would like to know each usage of metal layer of that design and also measure its length and width? how to code in such way? thanks for any guidance/help (3 Replies)
Discussion started by: teddy6507
3 Replies

3. AIX

How to measure waiting time in run queue?

Hello guys, I am doing a performance analysis on one of our psystem. Most of time I am using Nmon analyser to do my trend graph. But I can't find any help with it. We are interesting in the time spend by tasks in Aix run queue. After looking the Aix documentation, I am pessimist to find any... (3 Replies)
Discussion started by: GiiGii
3 Replies

4. Shell Programming and Scripting

Measure thread execution (in C, unix)

Hi, I have a simulation program which creates two threads and I would like to know if I can measure the time of each individual thread. Threads communicate (I use pthread to manage them) and I want to measure communication time. I found a solution with clock_gettime and CLOCK_THREAD_CPUTIME_ID... (32 Replies)
Discussion started by: Tinkh
32 Replies

5. Solaris

What exactly does 'zpool iostat' measure?

hi there, i'd like to know what exactly zpool's iostat (-v) output measure, especially the writes. Is it only the writes to the ZIL or all writes (including commmits) to the disks? if anyone knows, that'd be helpful roti (1 Reply)
Discussion started by: rotunda
1 Replies

6. UNIX for Advanced & Expert Users

How to measure g++ performance?

I am working on an application with some rather interesting build performance issues. If we build on Solaris/Linux x86/AMD64 the build is rather fast, but it takes more than five times as long on our Solaris Sparc servers (single-threaded builds on the workstations, but multi-threaded on the... (5 Replies)
Discussion started by: Elric of Grans
5 Replies

7. Shell Programming and Scripting

Is there a command to measure compile speed?

Hello Ive written 2 programs in shell and I need to compare their speed (Compile) against one another. what methods could I go about doing this? Is there a feature in shell do accommodate this? (2 Replies)
Discussion started by: Darklight
2 Replies

8. Solaris

How to tune kernel Parameters in Solaris 10,9 & how to measure performance

Hi, I want to tune my SUN servers for best performance. My servers are heavily loaded and used. They have Solaris 10. How to tune Kernel Parameters of solaris ? And How can I measue performance before changing parameters and after changing parameters ? Please help Thanks NeeleshG (2 Replies)
Discussion started by: neel.gurjar
2 Replies

9. UNIX for Dummies Questions & Answers

CPU load unit of measure?

If unix says my cpu load is 2.15 exactly what does that mean? --Jason (1 Reply)
Discussion started by: Mac J
1 Replies
Login or Register to Ask a Question
Bio::Phenotype::Measure(3pm)				User Contributed Perl Documentation			      Bio::Phenotype::Measure(3pm)

NAME
Bio::Phenotype::Measure - Representation of context/value(-range)/unit triplets SYNOPSIS
use Bio::Phenotype::Measure; my $measure = Bio::Phenotype::Measure->new( -context => "length", -description => "reduced length in 4(Tas1r3)", -start => 0, -end => 15, -unit => "mm", -comment => "see also Miller et al" ); print $measure->context(); print $measure->description(); print $measure->start(); print $measure->end(); print $measure->unit(); print $measure->comment(); print $measure->to_string(); DESCRIPTION
Measure is for biochemically defined phenotypes or any other types of measures. FEEDBACK
Mailing Lists User feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to one of the Bioperl mailing lists. Your participation is much appreciated. bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists Support Please direct usage questions or support issues to the mailing list: bioperl-l@bioperl.org rather than to the module maintainer directly. Many experienced and reponsive experts will be able look at the problem and quickly address it. Please include a thorough description of the problem with code and data examples if at all possible. Reporting Bugs Report bugs to the Bioperl bug tracking system to help us keep track the bugs and their resolution. Bug reports can be submitted via the web: https://redmine.open-bio.org/projects/bioperl/ AUTHOR
Christian M. Zmasek Email: czmasek-at-burnham.org or cmzmasek@yahoo.com WWW: http://monochrome-effect.net/ Address: Genomics Institute of the Novartis Research Foundation 10675 John Jay Hopkins Drive San Diego, CA 92121 APPENDIX
The rest of the documentation details each of the object methods. new Title : new Usage : my $me = Bio::Phenotype::Measure->new( -context => "length", -description => "reduced length in 4(Tas1r3)", -start => 0, -end => 15, -unit => "mm", -comment => "see Miller also et al" ); Function: Creates a new Measure object. Returns : A new Measure object. Args : -context => the context -description => a description -start => the start value -end => the end value -unit => the unit -comment => a comment init Title : init() Usage : $measure->init(); Function: Initializes this Measure to all "". Returns : Args : context Title : context Usage : $measure->context( "Ca-conc" ); or print $measure->context(); Function: Set/get for the context of this Measure. Returns : The context. Args : The context (optional). description Title : description Usage : $measure->description( "reduced in 4(Tas1r3)" ); or print $measure->description(); Function: Set/get for the description of this Measure. Returns : A description. Args : A description (optional). start Title : start Usage : $measure->start( 330 ); or print $measure->start(); Function: Set/get for the start value of this Measure. Returns : The start value. Args : The start value (optional). end Title : end Usage : $measure->end( 459 ); or print $measure->end(); Function: Set/get for the end value of this Measure. Returns : The end value. Args : The end value (optional). unit Title : unit Usage : $measure->unit( "mM" ); or print $measure->unit(); Function: Set/get for the unit of this Measure. Returns : The unit. Args : The unit (optional). comment Title : comment Usage : $measure->comment( "see also Miller et al" ); or print $measure->comment(); Function: Set/get for an arbitrary comment about this Measure. Returns : A comment. Args : A comment (optional). to_string Title : to_string() Usage : print $measure->to_string(); Function: To string method for Measure objects. Returns : A string representations of this Measure. Args : perl v5.14.2 2012-03-02 Bio::Phenotype::Measure(3pm)