Der Piazza Navona ist ein eleganter Marktplatz aus dem 1. Jahrhundert mit klassischem Brunnen und StraĂenleben.
The Piazza Navona is an elegant square dating from the 1st century A.D., with a classical fountain, street artists & bars.
Interactive Panorama of the Piazza Navona
Der Piazza Venezia ist ein Marktplatz inmitten von Rom.
The Piazza Venezia is a town square in the center of Rome.
Interactive Panorama of the Piazza Venezia
Die spanische Treppe, Scalinata di TrinitĂ dei Monti, ist eine berĂŒhmte Touristenattraktion in Rom. Und frĂŒh morgens kann man sogar auch die Stufen sehen.
The Spanish Steps, Scalinata di TrinitĂ dei Monti, is a popular tourist attraction in Rome. And early in the morning, you can actually see the steps.
Interactive Panorama of the Spanish Steps, first level
Gallery - PTGui Stitching Software
Interactive Panorama of the Spanish Steps, second level
Michelangelo's David ist ein Panorama fĂŒr WorldWidePanorama. Die Statue wurde im 16. Jahrhundert von einem 5m hohen und 12t schweren Marmorblock gehauen und representiert einen perfekten menschlichen Körper.
Die 9 Bilder fĂŒr das Panorama wurden innerhalb von 10s gemacht um das Problem von bewegten Personen und verfĂŒgbaren Platz zu reduzieren. Dieses Panorama wurde vollstĂ€ndig in PTGui ohne weitere Hilfsprogramme und Nachbesserungen gemacht. Die Maskenfunktion in PTGui wurde verwendet um die Trennlinien zwischen den Einzelbilder genau festzulegen. Das Bodenbild wurde mit Perspektivkorrektur optimiert da es etwas auĂer Mitte war, aber zuviel Ausrichtung hĂ€tte das gesamte Panorama verzogen. Wie David selber, ist das Panorama so perfekt.
Michelangelo's David is a contribution for the WorldWidePanorama. The statue was carved in the 16th century from a 5m tall 12 ton block of marble and represent perfect human anatomy.
This panorama was done without any post processing and exclusively using PTGui and the mask feature to force the seam lines to solve the unaligned images. The nadir image was optimized using the perspective control as it was slightly out of center, but forcing the alignment there would had shifted the main images too much.
Interactive Panorama of Michelangelo's David
Blick auf die David-Statue vom Eingang aus.
View to the statue from the entrance.
Example scripts to calculate the integral and zero points of functions using the AI code programmable calculator for Android.
import."mathlib"
// Math calculus examples
// Store the function in a variable 'fx1' .
// -e^(x-2)
{ 2 - e swap ^ -1 * } sto.fx1
// Integral
0 // start
2 // end
0,001 // precision
rcl.fx1 // f(x) as lambda
integral
// Zero point, uses the function inline.
-3 // start
{ sto.x rcl.x dup dup * * rcl.x dup * + rcl.x 4 * - 4 - } // x^3+x^2-4x-4
nullstelle
See the pre installed scripts for more examples.
AI code at Google Play
AI code is a programmable calculator for Android.
AI code supports Forth-style definitions, variables, code import and lamda expressions. The latest update adds Vector/Matrix operations and statistics. Along with the color coded editor it is a new concept of using a programmable calculator.
// Vector, Matrix in variable
[ 1 2 3 ] "Vector " +
sto.v1
[ [ 3 2 1 ]
[ 1 0 2 ] ] "Matrix " +
sto.m1
rcl.v1
rcl.m1
// Matrix multiplication
[ [ 1 2 ]
[ 0 1 ]
[ 4 0 ] ]
[ [ 3 2 1 ]
[ 1 0 4 ] ]
*
// solve system of equations
[ [ 1 2 3 ]
[ 1 1 1 ]
[ 3 3 1 ] ]
[ 2 2 0 ]
solve
// Matrix invert
[ [ 1 2 0 ]
[ 2 4 1 ]
[ 2 1 0 ] ]
inv
See the pre installed scripts for more examples.
AI code at Google Play