ideal weight
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 409
Ideality 0.1.0
Ideality is an advanced IDEAL-like library for Qt4. more>>
Ideality is an advanced IDEAL-like library for Qt4.
To compile:
qmake -recursive
make
The library contains some demostrations.
Currently only g++/Linux is tested using Qt 4.1/4.2 but there is no reason for not work on other platform/compiler supported by Qt 4.
<<lessTo compile:
qmake -recursive
make
The library contains some demostrations.
Currently only g++/Linux is tested using Qt 4.1/4.2 but there is no reason for not work on other platform/compiler supported by Qt 4.
Download (0.10MB)
Added: 2006-09-13 License: GPL (GNU General Public License) Price:
1136 downloads
Bio::NEXUS::WeightSet 0.67
Bio::NEXUS::WeightSet is a Perl module that represents column weights in alignment ( for each character). more>>
Bio::NEXUS::WeightSet is a Perl module that represents column weights in alignment ( for each character).
SYNOPSIS
new Bio::NEXUS::WeightSet($name, @weights, $iswt);
A module representing column weights in alignment (for each character)
METHODS
new
Title : new
Usage : $node = new Bio::NEXUS::WeightSet($name, @weights);
Function: Creates a new Bio::NEXUS::WeightSet object
Returns : Bio::NEXUS::WeightSet object
Args : none
set_weights
Title : set_weights
Usage : $weight->set_weights(@weights);
Function: stores it in the list weights
Returns : none
Args : list of weights
get_weights
Title : get_weights
Usage : @wts=@{$weightset->get_weights()};
Function: Returns the weights array
Returns : reference to array containing weights
Args : none
select_weights
Title : select_weights
Usage : $set->select_weights($columns);
Function: select a subset of characters
Returns : new self with subset of weights
Args : column numbers
is_wt
Title : is_wt
Usage : croak unless $weight->is_wt();
Function: Returns if object has weights (1 yes, 0 no)
Returns : weight existence (integer)
Args : none
set_name
Title : set_name
Usage : $weight->set_name($name);
Function: Sets the name of the weightset
Returns : none
Args : name (string)
get_name
Title : get_name
Usage : $name=$weight->get_name();
Function: Returns the name of the weightset
Returns : name (string)
Args : none
equals
Name : equals
Usage : $set->equals($another);
Function: compare if two WeightSet objects are equal
Returns : boolean
Args : an WeightSet object
<<lessSYNOPSIS
new Bio::NEXUS::WeightSet($name, @weights, $iswt);
A module representing column weights in alignment (for each character)
METHODS
new
Title : new
Usage : $node = new Bio::NEXUS::WeightSet($name, @weights);
Function: Creates a new Bio::NEXUS::WeightSet object
Returns : Bio::NEXUS::WeightSet object
Args : none
set_weights
Title : set_weights
Usage : $weight->set_weights(@weights);
Function: stores it in the list weights
Returns : none
Args : list of weights
get_weights
Title : get_weights
Usage : @wts=@{$weightset->get_weights()};
Function: Returns the weights array
Returns : reference to array containing weights
Args : none
select_weights
Title : select_weights
Usage : $set->select_weights($columns);
Function: select a subset of characters
Returns : new self with subset of weights
Args : column numbers
is_wt
Title : is_wt
Usage : croak unless $weight->is_wt();
Function: Returns if object has weights (1 yes, 0 no)
Returns : weight existence (integer)
Args : none
set_name
Title : set_name
Usage : $weight->set_name($name);
Function: Sets the name of the weightset
Returns : none
Args : name (string)
get_name
Title : get_name
Usage : $name=$weight->get_name();
Function: Returns the name of the weightset
Returns : name (string)
Args : none
equals
Name : equals
Usage : $set->equals($another);
Function: compare if two WeightSet objects are equal
Returns : boolean
Args : an WeightSet object
Download (0.15MB)
Added: 2006-12-19 License: Perl Artistic License Price:
1039 downloads
Graph::Weighted 0.1301
Graph::Weighted is an abstract, weighted graph implementation. more>>
Graph::Weighted is an abstract, weighted graph implementation.
SYNOPSIS
use Graph::Weighted;
$g = Graph::Weighted->new(
data => [
[ 0, 1, 2, 0, 0 ], # A vertex with two edges.
[ 1, 0, 3, 0, 0 ], # "
[ 2, 3, 0, 0, 0 ], # "
[ 0, 0, 1, 0, 0 ], # A vertex with one edge.
[ 0, 0, 0, 0, 0 ] # A vertex with no edges.
]
);
$g = Graph::Weighted->new(
data => {
weight => {
a => { b => 1, c => 2 }, # A vertex with two edges.
b => { a => 1, c => 3 }, # "
c => { a => 2, b => 3 }, # "
d => { c => 1 }, # A vertex with one edge.
e => {} # A vertex with no edges.
}
foo => [
[ 1, 2, 3 ],
[ 4, 5, 6 ],
[ 7, 8, 9 ]
],
}
);
$g = Graph::Weighted->new(
data => $Math_Matrix_object,
retrieve_as => ARRAY,
);
$data = $g->weight_data;
$w = $g->graph_weight;
$w = $g->vertex_weight($v1);
$w = $g->vertex_weight($v1, $w + 1);
$w = $g->edge_weight($v1, $v2);
$w = $g->edge_weight($v1, $v2, $w + 1);
$vertices = $g->heaviest_vertices;
$vertices = $g->lightest_vertices;
$w = $g->max_weight; # Weight of the largest vertices.
$w = $g->min_weight; # Weight of the smallest vertices.
# Call the weight methods of the inherited Graph module.
$x = $g->MST_Kruskal;
$x = $g->APSP_Floyd_Warshall;
$x = $g->MST_Prim($p);
<<lessSYNOPSIS
use Graph::Weighted;
$g = Graph::Weighted->new(
data => [
[ 0, 1, 2, 0, 0 ], # A vertex with two edges.
[ 1, 0, 3, 0, 0 ], # "
[ 2, 3, 0, 0, 0 ], # "
[ 0, 0, 1, 0, 0 ], # A vertex with one edge.
[ 0, 0, 0, 0, 0 ] # A vertex with no edges.
]
);
$g = Graph::Weighted->new(
data => {
weight => {
a => { b => 1, c => 2 }, # A vertex with two edges.
b => { a => 1, c => 3 }, # "
c => { a => 2, b => 3 }, # "
d => { c => 1 }, # A vertex with one edge.
e => {} # A vertex with no edges.
}
foo => [
[ 1, 2, 3 ],
[ 4, 5, 6 ],
[ 7, 8, 9 ]
],
}
);
$g = Graph::Weighted->new(
data => $Math_Matrix_object,
retrieve_as => ARRAY,
);
$data = $g->weight_data;
$w = $g->graph_weight;
$w = $g->vertex_weight($v1);
$w = $g->vertex_weight($v1, $w + 1);
$w = $g->edge_weight($v1, $v2);
$w = $g->edge_weight($v1, $v2, $w + 1);
$vertices = $g->heaviest_vertices;
$vertices = $g->lightest_vertices;
$w = $g->max_weight; # Weight of the largest vertices.
$w = $g->min_weight; # Weight of the smallest vertices.
# Call the weight methods of the inherited Graph module.
$x = $g->MST_Kruskal;
$x = $g->APSP_Floyd_Warshall;
$x = $g->MST_Prim($p);
Download (0.011MB)
Added: 2007-08-07 License: Perl Artistic License Price:
812 downloads
Weight Loss Recipe Book 3.1
Weight Loss Recipe Book is a free, online, community-built recipe book. more>>
Weight Loss Recipe Book is a free, online, community-built recipe book. Weight Loss Recipe Book contains everything you need to allow your web site visitors to submit recipes and everything your administrator needs to administer the recipes.
When a visitor submits a recipe, the recipe is added to a database and awaits approval from the administrator before being added to the public site.
Main features:
- Community built, meaning you just have to approve entries and watch your web site expand!
- Captcha validation to prevent automated entries into the recipe book.
- Complete administrator system - add administrators, recipe categories, manage recipes and more!
- Best of all, Weight Loss Recipe Book is totally free!
<<lessWhen a visitor submits a recipe, the recipe is added to a database and awaits approval from the administrator before being added to the public site.
Main features:
- Community built, meaning you just have to approve entries and watch your web site expand!
- Captcha validation to prevent automated entries into the recipe book.
- Complete administrator system - add administrators, recipe categories, manage recipes and more!
- Best of all, Weight Loss Recipe Book is totally free!
Download (0.061MB)
Added: 2006-05-08 License: Freeware Price:
1267 downloads
acidlaunch 0.5
acidlaunch is a light weight GTK based launch bar. more>>
acidlaunch is a light weight GTK based launch bar.
It is designed to be small and light, with a simple XML based configuration format. Its also designed to work well with blackbox.
<<lessIt is designed to be small and light, with a simple XML based configuration format. Its also designed to work well with blackbox.
Download (0.059MB)
Added: 2006-09-26 License: GPL (GNU General Public License) Price:
1123 downloads
FollowMeIP 1.3
FollowMeIP provides an IP address tracking utility. more>>
FollowMeIP provides an IP address tracking utility.
FollowMeIP is a small client that allows you to retrieve the IP address of your machine over the Web. It works by periodically sending your IP address to the FollowMeIP server, from where you can retrieve it using a password.
It is ideal for people that are running servers on dynamic IP connections, or are away from home and want to access their machines.
Enhancements:
- The HTTP network functions now use straight TCP to ensure accurate IP reporting.
<<lessFollowMeIP is a small client that allows you to retrieve the IP address of your machine over the Web. It works by periodically sending your IP address to the FollowMeIP server, from where you can retrieve it using a password.
It is ideal for people that are running servers on dynamic IP connections, or are away from home and want to access their machines.
Enhancements:
- The HTTP network functions now use straight TCP to ensure accurate IP reporting.
Download (0.79MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
933 downloads
CLC Free Workbench 4.0
Bioinformatics program for DNA, RNA, and protein sequence analysis more>>
CLC Free Workbench creates a software environment enabling users to make basic bioinformatics analyses and smooth data management, combined with excellent graphical viewing and output options.
Main features:
- GenBank searching and viewing (linear and circular views)
- Multiple alignment of DNA, RNA and proteins (2 alignment algorithms)
- Open reading frame determination
- Translation from DNA to proteins (all genetic translation tables)
- Reports with residue composition, molecular weight and iso electric point (for proteins)
- Neighbor-joining and UPGMA phylogenies
- Restriction site analysis and viewing
- Other reporting facilities
- Import/export to a number of data formats
- Launch of external files
- Detailed History Log
<<lessMain features:
- GenBank searching and viewing (linear and circular views)
- Multiple alignment of DNA, RNA and proteins (2 alignment algorithms)
- Open reading frame determination
- Translation from DNA to proteins (all genetic translation tables)
- Reports with residue composition, molecular weight and iso electric point (for proteins)
- Neighbor-joining and UPGMA phylogenies
- Restriction site analysis and viewing
- Other reporting facilities
- Import/export to a number of data formats
- Launch of external files
- Detailed History Log
Download (45.1MB)
Added: 2007-06-28 License: Freeware Price:
849 downloads
Perl Panel 0.9.1
Perl Panel is an X11 panel program written in Perl. more>>
PerlPanel is an attempt to build a useable, lean panel program (like the Gnome Panel or the KDE Kicker) in Perl, using the Gtk2-Perl libraries.
PerlPanel is the ideal accompaniment to a light-weight Window Manager such as OpenBox, or a desktop-drawing program like iDesk. Click here to see all three working together.
Most of PerlPanels features are provided by applets - simple widgets that each do a different job. PerlPanel currently ships with 36 different applets.
<<lessPerlPanel is the ideal accompaniment to a light-weight Window Manager such as OpenBox, or a desktop-drawing program like iDesk. Click here to see all three working together.
Most of PerlPanels features are provided by applets - simple widgets that each do a different job. PerlPanel currently ships with 36 different applets.
Download (0.34MB)
Added: 2005-04-27 License: GPL (GNU General Public License) Price:
1646 downloads
UMLet 7.1
UMLet is a lightweight tool for rapidly drawing UML diagrams. more>>
UMLet project is an open-source Java tool for rapidly drawing UML diagrams with a pop-up-free, light-weight user interface.
UMLet lets you draw diagram sketches fast; export diagrams to eps, pdf, jpg, svg, and sys.
Add elements to a diagram with a double click. Edit elements using the lower-right text panel. Select multiple elements using Ctrl or lasso. Press C to copy diagram to the system clipboard
Main features:
- fast
- text-based sequence diagram
- call from command line.
<<lessUMLet lets you draw diagram sketches fast; export diagrams to eps, pdf, jpg, svg, and sys.
Add elements to a diagram with a double click. Edit elements using the lower-right text panel. Select multiple elements using Ctrl or lasso. Press C to copy diagram to the system clipboard
Main features:
- fast
- text-based sequence diagram
- call from command line.
Download (4.9MB)
Added: 2006-11-22 License: GPL (GNU General Public License) Price:
657 downloads
Chaos Visualization 0.9
Chaos Visualization is a program for quickly calculating the amount of predictability in a very simple system. more>>
Chaos Visualization is a program for quickly calculating the amount of predictability in a very simple system: a spring with one side connected to the origin and the other to a weight under gravity.
This amount is chaos is visualized in TIFF images, which can be put in a sequence to show the evolution of chaotic behaviour in this system.
<<lessThis amount is chaos is visualized in TIFF images, which can be put in a sequence to show the evolution of chaotic behaviour in this system.
Download (0.022MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1095 downloads
ZXID 0.19
ZXID aims at full stack implementation of all federated identity management and identity web services protocols. more>>
ZXID aims at full stack implementation of all federated identity management and identity web services protocols. Initial goal is supporting SP role, followed by IdP and ID-WSF WSC roles.
ZXID is light weight, has small foot print, and is implemented in C.
ZXID is suitable for both high perrformance and embedded applications. Scripting languages are supported using SWIG, including Perl and PHP. The "full stack" nature of ZXID means its self contained and has minimal external library dependencies, the main one being OpenSSL.
Targeted Federated Identity Standards:
SAML 2.0
SAML 1.1
Liberty ID-FF 1.2
WS-Federation 1.0 Basic Profile
Targeted ID Web Services Standards:
Liberty ID-WSF 1.1
Liberty ID-WSF 2.0
<<lessZXID is light weight, has small foot print, and is implemented in C.
ZXID is suitable for both high perrformance and embedded applications. Scripting languages are supported using SWIG, including Perl and PHP. The "full stack" nature of ZXID means its self contained and has minimal external library dependencies, the main one being OpenSSL.
Targeted Federated Identity Standards:
SAML 2.0
SAML 1.1
Liberty ID-FF 1.2
WS-Federation 1.0 Basic Profile
Targeted ID Web Services Standards:
Liberty ID-WSF 1.1
Liberty ID-WSF 2.0
Download (2.6MB)
Added: 2007-08-13 License: The Apache License 2.0 Price:
803 downloads
lwIP 0.5.3
LwIP is a light-weight implementation of the TCP/IP protocol suite. more>>
lwIP is a light-weight implementation of the TCP/IP protocol suite that was originally written by Adam Dunkels of the Swedish Institute of Computer Science but now is being actively developed by a team of developers distributed world-wide headed by Leon Woestenberg.
Since its release, lwIP very interesting and and today is being used in many commercial products. lwIP has been ported to several platforms and operating systems and can be run either with or without an underlying OS.
The focus of the lwIP TCP/IP implementation is to reduce the RAM usage while still having a full scale TCP. This makes lwIP suitable for use in embedded systems with tens of kilobytes of free RAM and room for around 40 kilobytes of code ROM.
Main features:
- IP (Internet Protocol) including packet forwarding over multiple network interfaces
- ICMP (Internet Control Message Protocol) for network maintenance and debugging
- UDP (User Datagram Protocol) for datagram data
- TCP (Transmission Control Protocol) with congestion control, RTT estimation and fast recovery/fast retransmit
- Specialized no-copy API for enhanced performance
- Optional Berkeley socket API
<<lessSince its release, lwIP very interesting and and today is being used in many commercial products. lwIP has been ported to several platforms and operating systems and can be run either with or without an underlying OS.
The focus of the lwIP TCP/IP implementation is to reduce the RAM usage while still having a full scale TCP. This makes lwIP suitable for use in embedded systems with tens of kilobytes of free RAM and room for around 40 kilobytes of code ROM.
Main features:
- IP (Internet Protocol) including packet forwarding over multiple network interfaces
- ICMP (Internet Control Message Protocol) for network maintenance and debugging
- UDP (User Datagram Protocol) for datagram data
- TCP (Transmission Control Protocol) with congestion control, RTT estimation and fast recovery/fast retransmit
- Specialized no-copy API for enhanced performance
- Optional Berkeley socket API
Download (0.15MB)
Added: 2006-07-03 License: Freeware Price:
1210 downloads
debian-updates 1.7
debian-updates is a simple script that sends an email if any relevant Debian security updates become available. more>>
debian-updates is a simple script that sends an email or displays console messages if any relevant Debian security updates become available. debian-updates is ideal for running from cron.
<<less Download (0.017MB)
Added: 2006-08-09 License: GPL (GNU General Public License) Price:
1174 downloads
Dates 0.4.1
Dates project is a small, light-weight calendar that shares data with GNOME Evolution. more>>
Dates project is a small, light-weight calendar that shares data with GNOME Evolution.
Dates is a small, light-weight calendar that shares data with GNOME Evolution. Dates features an innovative, unified, zooming view and is designed for use on hand-held devices, such as the Nokia 770 or the Sharp Zaurus series of PDAs.
<<lessDates is a small, light-weight calendar that shares data with GNOME Evolution. Dates features an innovative, unified, zooming view and is designed for use on hand-held devices, such as the Nokia 770 or the Sharp Zaurus series of PDAs.
Download (0.43MB)
Added: 2007-04-14 License: GPL (GNU General Public License) Price:
924 downloads
Prodder 0.5
Prodder is a command-line based Podcast client written in Perl that runs on just about any *n*x system. more>>
Prodder is a command-line based Podcast client written in Perl that runs on just about any *n*x system. Prodder implements a few very useful features that are lacking in many of the existing tools, while remaining simple and light-weight.
Main features:
- Interactive and autonomous (cronjob) modes.
- Selective downloading (great for dialupers and low-volume users).
- Extended item information (date, enclosure url/size, description).
- User-defined download directory structure (based on title, category, date).
- Playlist generation.
Prodder is released under the GNU General Pulic Licence.
<<lessMain features:
- Interactive and autonomous (cronjob) modes.
- Selective downloading (great for dialupers and low-volume users).
- Extended item information (date, enclosure url/size, description).
- User-defined download directory structure (based on title, category, date).
- Playlist generation.
Prodder is released under the GNU General Pulic Licence.
Download (0.012MB)
Added: 2006-05-20 License: GPL (GNU General Public License) Price:
1252 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above ideal weight search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed