Vista Download

Choice Vista download - Agena Vista download - Best Free Vista Downloads

 



Related Keywords

choice downloads
choice mail downloads
choice field downloads
choice files extender downloads
choice analysis downloads
multiple choice downloads
multiple choice questions downloads
1st choice downloads
best choice downloads
multiple choice tests downloads
singer s choice downloads
career choice downloads
multi choice software downloads
effective choice downloads
multiple choice quiz maker downloads
rank choice downloads
my choice downloads
multiple choice test downloads
electronic multiple choice downloads
multiple choice quiz downloads

Top Software Keywords

pascal downloads
compiler downloads
programming downloads
basic downloads
windows downloads
visual basic downloads
java downloads
development downloads
compile downloads
free download downloads
interpreter downloads
ide downloads
language downloads
vbscript downloads
automation downloads
lisp downloads
assembler downloads
delphi downloads
exe downloads
script downloads
games downloads
tool downloads
bat to exe downloads
write downloads
scripting downloads
html downloads
vbscript to exe downloads
sold downloads
doc reader downloads
qbasic downloads

 

Downloads RSS

RSS 2.0 feed XML feed XML feed

Top Downloads

ConceptBase.cc
7.5 Build 20130215 download
Open Source

ZylGSM
1.54 download
Shareware

Agena
4.2.2 download
Open Source

Visual Prolog
9 B902 download
Freeware

GdPicture.NET
SDK

14.2.88.0 download
Trialware

ScriptCryptor
4.4.0.0 download
Shareware

ConTEXT Editor
0.98.6 download
Freeware

PyScripter
Portable

4.3.4 download
Open Source

EaseFilter
Encryption
Filter Driver
SDK

5.4.4.3 download
Freeware

Agena Portable
4.2.2 download
Open Source

FlexCell Grid
Control for
ActiveX

1.0.8 download
Shareware

Viscomsoft
Image Viewer
CP Pro SDK

22.0 download
Shareware



VISCOM PDF
Viewer SDK
ActiveX

8.5 download
Shareware

Top Rated

SuperEdi
4.3.2 download
Freeware

SimplexNumeric
a

25.4.2.1 download
Freeware

AlphaControls
2020

15.21 download
Shareware

IntelliProtect
or

2.24 download
Freeware

SetupBuilder
10.0.6531 download
Shareware

CyberInstaller
Suite

2022 download
Freeware

GSA Auto
SoftSubmit

8.37 download
Shareware

Install
Package
IronPdf

2022.4.5455 download
Shareware

ReFox XII
12.5 download
Commercial

PlayBasic
Learning
Edition

1.64l download
Freeware

DJ Java
Decompiler

3.12.12.101 download
Shareware

PDF-XChange
PRO SDK

9.0.357.0 download
Shareware

SIP ActiveX
Phone

1.1.2.6 download
Shareware

Turbo C++
3.0 download
Freeware

Ultimate++
605 download
Freeware

 

Navigation: Home \ Development \ Compilers & Interpreters \ Agena

Agena

 4.2.2   by agena.info

Vista Compatible
Software Description:
Agena, developed by agena.info, is a versatile procedural programming language designed for scientific, educational, and scripting applications. It excels in simplicity and efficiency, making it ideal for both beginners and seasoned developers. With robust support for complex mathematical functions, flexible data structures, and seamless integration with various platforms, Agena stands out as a powerful tool for rapid development and problem-solving. ... Download Agena


Add to Download Basket


Report virus or spyware
Agena screenshot
[ Zoom screenshot ]
Vote:
Voted: 0 times
Downloaded: 557 times
Software Info
Best Vista Download periodically updates pricing and software information of Agena full version from the publisher, but some information may be out-of-date. You should confirm all information.
Software piracy is theft, using crack, warez passwords, patches, serial numbers, registration codes, key generator, keymaker or keygen for Agena license key is illegal and prevent future development of Agena. Download links are directly from our mirrors or publisher's website, Agena torrent files or shared files from rapidshare, yousendit or megaupload are not allowed!
Released: September 18, 2024
Filesize: 9.10 MB
Platform: Windows NT, Windows 11, Windows 10 32/64 bit, Windows 8 32/64 bit, Windows 7 32/64 bit, Windows Vista, Windows XP, Windows 2K
Install Instal And Uninstall
Add Your Review or Windows Vista Compatibility Report
Your Name:
Software Version:
Rating:
Comment:
Security Code:

Agena

- Releases History
Software: Agena 4.2.2
Date Released: Sep 18, 2024
Status: New Release
Release Notes: Changed memory management to prevent out-of-memory errors if you are working with very large structures:
When internal memory for tables and sequences is to be expanded, Agena now increases it by around 13 percent (median) and not just to the next power of two, affecting a large number of operators and functions, including Cantor set operations on tables and sequences.
You can explore the new method by calling the new function `utils.newsize`.
Buffer arrays are now aligned to word boundaries (4-byte chunks).
Buffers for integers and floating-point numbers are now also mildly expanded, benefitting, among others, the `union`, `intersect` and `minus` metamethods of the `numarray` package and functions `numarray.unique`, `io.lines`, `lookup.indices`, `tables.indices` and `tables.entries`.
`sequences.resize` now just re-allocates memory to the next multiple of four instead of the next power of two, saving memory.
This release has been Valgrind-checked on x86 and AMD64 Linux to ensure there are no internal errors or memory leaks.
Software: Agena 4.2.1
Date Released: Sep 17, 2024
Status: New Release
Release Notes: `numarray.double`, `numarray.longdouble`, `numarray.uchar`, `numarray.ushort`, `numarray.uint32` and `numarray.int32` can now be called without any argument. In this case the functions create a numeric array of size zero which you may fill later with `numarray.append`, `numarray.prepend`, `numarray.resize`, etc.
The functions now also accept an initialising table, sequence or register and fill the numeric array (numarray) with the numbers in them:
> a := numarray.double(3, [1, 2, 3]);
> numarray.toseq(a): # inspect the contents
seq(1, 2, 3)
`numarray.include` can now insert more than one number into a numeric array with only one call. For example, to insert 10 and 20 at index 2 in numarray a, issue:
> a := numarray.double(3, [1, 2, 3]);
> numarray.include(a, 2, 10, 20);
> numarray.toseq(a): # check the contents
seq(1, 10, 20, 2, 3)
`numarray.append` can now join two numarrays in-place.
> a := numarray.double(3, [1, 2, 3]);
> b := numarray.double(3, [10, 20, 30]);
> numarray.append(a, b);
> numarray.toseq(a): # inspect the contents
seq(1, 2, 3, 10, 20, 30)
New `numarray.prepend` adds one or more numbers to the beginning of a numarray. The function can also join two numarrays in-place. Examples:
> a := numarray.double(3, [1, 2, 3]);
> numarray.prepend(a, -1, 0);
> numarray.toseq(a): # check the contents
seq(-1, 0, 1, 2, 3)
> a := numarray.double(3, [1, 2, 3]);
> b := numarray.double(3, [-1, 0]);
> numarray.prepend(a, b);
> numarray.toseq(a): # inspect the contents
seq(-1, 0, 0, 1, 2, 3)
New `numarray.zip` zips together two numarrays with a user-defined function; for example to add the respective values at the same index, enter:
> a := numarray.double(4, [1, 2, 3, 4]);
> b := numarray.double(4, [2, 3, 4, 5]);
> c := numarray.zip(<< x, y -> x + y >>, a, b);
> numarray.toseq(c): # check the contents
seq(3, 5, 7, 9)
This release has been Valgrind-checked on x86 and AMD64 Linux to ensure there
Software: Agena 4.2.0
Date Released: Sep 15, 2024
Status: New Release
Release Notes: With a number, `countitems` can now conduct an approximate check when given any optional argument. See the difference:
> countitems(1.1, [10, 20, +++1.1, ---1.1, 2, 1.1]):
> countitems(1.1, [10, 20, +++1.1, ---1.1, 2, 1.1], true):
Likewise, `member` and `whereis` can do approximate checks when given any optional argument, as well:
> member(1.1, [10, 20, +++1.1, ---1.1, 2, 1.1]):
> member(1.1, [10, 20, +++1.1, ---1.1, 2, 1.1], true):
> whereis([10, 20, +++1.1, ---1.1, 2, 1.1], 1.1):
[6]
> whereis([10, 20, +++1.1, ---1.1, 2, 1.1], 1.1, true):
[3, 4, 6]
`stats.countentries`, `stats.gmean`, `stats.iqr`, `stats.kurtosis`, `stats.mean`, `stats.qcd`, `stats.qmean`, `stats.skewness` can now process registers. In addition, `stats.countentries` now also works with numarrays.
`stats.obcount` does now work with tables, registers and numarrays.
The `union`, `intersect` and `minus` operators now work with numarrays.
New `numarray.append` adds one or more numbers to the end of any numarray.
New `numarray.countitems` counts the number of occurrences of a number in any numarray:
New `numarray.unique` removes multiple occurrences of the same value, if present, from any numarray:
> a := numarray.double(0);
> numarray.append(a, 1, 2, 3, 1, 2);
> b := numarray.unique(a);
> numarray.toseq(b):
seq(1, 2, 3)
New `numarray.member` checks whether a number is included in a numarray and can also do an approximate check by passing an optional epsilon value:
> numarray.member(1, a):
true
> a := numarray.double(0);
> numarray.append(a, +++1, 2, 3);
> numarray.member(1, a, math.epsilon(1)):
true
With vectors `linalg.innerprod` inadvertently put a global table into the environment. This has been fixed.
This release has been named after the City of Lafayette, Louisiana, and has been Valgrind-checked on x86 and AMD64 Linux to ensure there are no internal errors or memory leaks.


Most popular choice in Compilers & Interpreters downloads for Vista

Agena 4.2.2 download by agena.info
... its simplicity and readability, making it an excellent choice for both beginners and seasoned programmers. The language's ... functions, and efficient performance make it an excellent choice for scientific, educational, and scripting applications. Whether you're ...
View Details Download
Agena

PureBasic 6.12.0 download by Fantaisie Software
... with modern capabilities. This makes it an ideal choice for beginners who are just stepping into the ... performance, and supportive community make it a standout choice for developers looking to create high-quality applications with ...
View Details Download
PureBasic

Wing IDE 101 10.0.4.0 download by Wingware
Wing IDE 101 is free scaled down Python IDE designed for teaching introductory programming classes. It omits many features found in Wing IDE Professional and makes simplifications appropriate for beginners. The ...
View Details Download
Wing IDE 101

R for Windows 4.4.1 download by R Development Core Team
... The S language is often the vehicle of choice for research in statistical methodology, and R provides ... taken over the defaults for the minor design choices in graphics, but the user retains full control. ...
View Details Download
R for Windows


Lua 5.4.6 download by Ryan Pusztai, Steve Donovan, Andrew Wilson
... For specific reasons why Lua is a good choice also for constrained devices, read this summary by Mike Pall. See also a poster created by Timm Müller. Lua is ...
View Details Download
Lua

Simply Fortran 3.35 Build 4225 download by Approximatrix, LLC
... compatibility, and excellent support makes it an ideal choice for anyone working with Fortran. Whether you are developing scientific applications, engineering simulations, or any other Fortran-based projects, Simply Fortran provides ...
View Details Download
Simply Fortran

GoldenSharp 0.9.1.2 download by Karmian.org
... of our IDE - GoldenSharp is an excellent choice as the development environment of tools and for educational purposes. FEATURES: · Ultra simple IDE · Smart syntax highlighter ...
View Details Download
GoldenSharp