
Notebook Calculator
5Puan
Sep 28, 2024Son Güncelleme
1.2Sürüm
Notebook Calculator Hakkında
DOING LONG CALCULATIONS IN NOTEBOOK !
GO BACK & CHANGE ERRORS EASILY !
JUST LIKE TYPE IN A TEXT FIELD !
COPY + CUT + PASTE
EDIT & SAVE CALCULATION HISTORY !
SCIENTIFIC & GRAPHIC CALCULATOR !
• It Supports the File Management !
- Create a file
- Save
- Open
- Delete
• Mathematical Functions:
SIN(X) : sine of x
COS(X) : cosine of x
TAN(X) : tangent of x
COT(X) : cotangent of x
ASIN(X) : arcsine of x
ACOS(X) : arccosine of x
ATAN(X) : arctangent of x
SINH(X) : hyperbolic sine
COSH(X) : hyperbolic cosine
TANH(X) : hyperbolic tangent
ASINH(X) : inverse hyperbolic sine
ACOSH(X) : inverse hyperbolic cosine
ATANH(X) : inverse hyperbolic tangent
SQRT(X) : square root of x
ABS(X) : absolute value of x
FCT(X) : x factorial
LOG(X,Y) : logarithm of y to base x
LN(X) : natural logarithm of x
LOG(X) : base-10 logarithm of x
LOG10(X) : base-10 logarithm of x
LOG2(X) : base-2 logarithm of x
EXP(X) : base-e exponential of x
ERF(X) : the error function of x
ERFC(X) : the complementary error function of x
ROUND(X) : integral nearest to x
CEIL(X) : the smallest integral that is not less than x
FLOOR(X) : the largest integral that is not greater than x
TGAMMA(X) : the gamma function of x
LGAMMA(X) : the natural logarithm of the absolute value of the gamma function of x
X^Y : y-th power of x
• Statistical functions:
SUM(a1,a2,a3,a4) : a1+a2+a3+a4
AVERAGE(a1,a2,a3,a4) : (a1+a2+a3+a4)÷4
VARIANCE(a1,a2,a3,a4) : variance
SD(...) : standard deviation
SUMSQ(...) : sum of squares
AD(...) : absolute deviation
CV(...) : coefficient of variation
SVARIANCE(...) : sample variance
SSD(...) : sample standard deviation
SCV(...) : sample coefficient of variance
• Help Manual:
“//” means a line comment or annotation.
A=2
B=3
C=A+B
Click “Run”, the screen shows:
C=5
If the line C=A+B is annotated ,
A=2
B=3
//C=A+B
Click “Run”, the screen shows:
B=3
- Variable Naming Rules:
Start with letters, and not involving keywords.
A, A1, B25, HAT (right)
PRINT1, COS (wrong)
- The Usage of PRINT:
A=10+5
B=10/5
PRITN A,B
Click “Run”, the screen shows:
A=15
B=2
Default variable name is RESULT , e.g.
16+5*6
Click “Run”, the screen shows:
RESULT=46
- Combination & Arrangement:
C(n,k) = n!/(k!(n-k)!)
A(n,k) = n!/(n-k)!
- Complex Number
When there is “i” or “∠” on the screen, it automatically enters Complex Number Calculation Mode.
e.g. X=3+4i or X=5∠53.1°
9 functions are available for the Mode.
SIN(X), COS(X), TAN(X)
COT(X), SINH(X), COSH(X)
SQRT(X), ABS(X), CONJUGATE(X)
- Integral
INTEGRAL X²,2,4
Default precision is 300 times of calculations. It can be more accurate, e.g. 500 times.
INTEGRAL X²,2,4,500
- Graphics
PLOT SIN(X)
PLOT X²
Default length = 10, width = 10. Specify the lenght = 20, width = 5. Then we have,
PLOT X²,20,5
Default dense is 150 points. It also can be customized, e.g. 200 points.
PLOT X²,20,5,200
GO BACK & CHANGE ERRORS EASILY !
JUST LIKE TYPE IN A TEXT FIELD !
COPY + CUT + PASTE
EDIT & SAVE CALCULATION HISTORY !
SCIENTIFIC & GRAPHIC CALCULATOR !
• It Supports the File Management !
- Create a file
- Save
- Open
- Delete
• Mathematical Functions:
SIN(X) : sine of x
COS(X) : cosine of x
TAN(X) : tangent of x
COT(X) : cotangent of x
ASIN(X) : arcsine of x
ACOS(X) : arccosine of x
ATAN(X) : arctangent of x
SINH(X) : hyperbolic sine
COSH(X) : hyperbolic cosine
TANH(X) : hyperbolic tangent
ASINH(X) : inverse hyperbolic sine
ACOSH(X) : inverse hyperbolic cosine
ATANH(X) : inverse hyperbolic tangent
SQRT(X) : square root of x
ABS(X) : absolute value of x
FCT(X) : x factorial
LOG(X,Y) : logarithm of y to base x
LN(X) : natural logarithm of x
LOG(X) : base-10 logarithm of x
LOG10(X) : base-10 logarithm of x
LOG2(X) : base-2 logarithm of x
EXP(X) : base-e exponential of x
ERF(X) : the error function of x
ERFC(X) : the complementary error function of x
ROUND(X) : integral nearest to x
CEIL(X) : the smallest integral that is not less than x
FLOOR(X) : the largest integral that is not greater than x
TGAMMA(X) : the gamma function of x
LGAMMA(X) : the natural logarithm of the absolute value of the gamma function of x
X^Y : y-th power of x
• Statistical functions:
SUM(a1,a2,a3,a4) : a1+a2+a3+a4
AVERAGE(a1,a2,a3,a4) : (a1+a2+a3+a4)÷4
VARIANCE(a1,a2,a3,a4) : variance
SD(...) : standard deviation
SUMSQ(...) : sum of squares
AD(...) : absolute deviation
CV(...) : coefficient of variation
SVARIANCE(...) : sample variance
SSD(...) : sample standard deviation
SCV(...) : sample coefficient of variance
• Help Manual:
“//” means a line comment or annotation.
A=2
B=3
C=A+B
Click “Run”, the screen shows:
C=5
If the line C=A+B is annotated ,
A=2
B=3
//C=A+B
Click “Run”, the screen shows:
B=3
- Variable Naming Rules:
Start with letters, and not involving keywords.
A, A1, B25, HAT (right)
PRINT1, COS (wrong)
- The Usage of PRINT:
A=10+5
B=10/5
PRITN A,B
Click “Run”, the screen shows:
A=15
B=2
Default variable name is RESULT , e.g.
16+5*6
Click “Run”, the screen shows:
RESULT=46
- Combination & Arrangement:
C(n,k) = n!/(k!(n-k)!)
A(n,k) = n!/(n-k)!
- Complex Number
When there is “i” or “∠” on the screen, it automatically enters Complex Number Calculation Mode.
e.g. X=3+4i or X=5∠53.1°
9 functions are available for the Mode.
SIN(X), COS(X), TAN(X)
COT(X), SINH(X), COSH(X)
SQRT(X), ABS(X), CONJUGATE(X)
- Integral
INTEGRAL X²,2,4
Default precision is 300 times of calculations. It can be more accurate, e.g. 500 times.
INTEGRAL X²,2,4,500
- Graphics
PLOT SIN(X)
PLOT X²
Default length = 10, width = 10. Specify the lenght = 20, width = 5. Then we have,
PLOT X²,20,5
Default dense is 150 points. It also can be customized, e.g. 200 points.
PLOT X²,20,5,200
Notebook Calculator Ekran Görüntüleri
Notebook Calculator FAQ
PGYER IPA HUB'dan Notebook Calculator nasıl indirilir?
PGYER IPA HUB'daki Notebook Calculator ücretsiz mi indirilebilir?
PGYER IPA HUB'dan Notebook Calculator indirmek için bir hesaba ihtiyacım var mı?
PGYER IPA HUB'daki Notebook Calculator ile ilgili bir sorunu nasıl bildirebilirim?
Bu yardımcı oldu mu?
Evet
Hayır
En Popüler

Sing It - Ear TrainerA must app for every musician, singer, or just for fun.
Test,train, and improve your musical ear an

Tube PiP - PiP for YouTubeTube PiP - the ultimate YouTube companion for iOS:
1. Picture in Picture (PiP) Playback: Watch YouT

Papaya Ouch!In the game Papaya Ouch!, you can experience backpack management, tower defense, TD, merge, match 2,

Lets Go VPNLets Go VPN, the most advanced VPN, is designed by a team of top developers who strive to ensure all

Paprika Recipe Manager 3Organize your recipes. Create grocery lists. Plan your meals. Download recipes from your favorite we

War Pigeons UnboundedWar is coming. Deep down in top secret military labs they have evolved, mutated - and escaped. The f

Procreate PocketApp of the Year winner Procreate Pocket is the most feature-packed and versatile art app ever design

Cowboy Westland survival runAre you ready to take part in the #1 exciting 3D western adventure? Cowboy Westland survival run mak

Max: Stream HBO, TV, & MoviesIt’s all here. Iconic series, award-winning movies, fresh originals, and family favorites, featuring

TonalEnergy Tuner & MetronomeFor musicians from pros to beginners, whether you sing, play a brass, woodwind or stringed instrumen

SkyView®SkyView® brings stargazing to everyone. Simply point your iPhone, iPad, or iPod at the sky to identi

Ninja Dash 2015Ninja Dash 2015 is the fast paced running game!<br>On these maze fields, rush to the end of this nin

Tami-Live Chat&VideoTami is an app that records daily life and ideas.<br><br>You can use it to record your every day, wh

SALE Camera - marketing camera effects plus photo editorSALE Camera Help you create the best Business to consumer Stock Photos and Images. provides 300 filt

DevTutor for SwiftUI"DevTutor" is an application designed to assist developers in creating exceptional apps using SwiftU

Mokens League SoccerDive into Mokens League Soccer and experience the new era of soccer gaming!
Esports for Everyone: W

Zombie ZZOMBIE ENDLESS RUNNER LIKES NO OTHER!<br><br>WHY?<br><br>* Awesome graphic quality!<br><br>* Simplif

Dead Z - Zombie SurvivalCatastrophic explosion at the Omega Labs started the apocalypse, now spreading across the Earth.
Ta

HotSchedulesHotSchedules is the industry's leading employee scheduling app because it’s the fastest and easiest

ChatGPTIntroducing ChatGPT for iOS: OpenAI’s latest advancements at your fingertips.
This official app is

Disney StoreDisney Store is your official home for exclusive collections, designer collaborations, and one-of-a-

fight back tennisa Pong game with Tennis style, the gameplay itself is very simple, you can using Touch. Ball speed w

Dr. Mina AdlyMina Adly mobile app provides students with portable instant access to a selection of services.
Usi

iVerify BasiciVerify Basic is your gateway to enhanced device security and threat awareness, offering a glimpse i