Files
Upsilon/apps/shared.universal.i18n
Léa Saviot c57f9cf8b1 [code] The Python console compiles and executes commands entered.
It stores and displays the result in the console store.
An empty line returned at the end of the execution is deleted.

Change-Id: Ic90e02e2d91d0a0033413da0588032d9450aefd0
2017-11-17 11:59:50 +01:00

110 lines
2.8 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
Default = ""
CodeApp = "Python"
CodeAppCapital = "PYTHON"
Alpha = "alpha"
CapitalAlpha = "ALPHA"
Shift = "shift"
X = "x"
Y = "y"
N = "n"
P = "p"
Mu = "μ"
Sigma = "σ"
Lambda = "λ"
A = "a"
B = "b"
R = "r"
Sxy = "Σxy"
XMin = "Xmin"
XMax = "Xmax"
YMin = "Ymin"
YMax = "Ymax"
YAuto = "Y auto"
RightIntegralFirstLegend = "P("
RightIntegralSecondLegend = "≤X)="
LeftIntegralFirstLegend = "P(X≤"
LeftIntegralSecondLegend = ")="
FiniteIntegralLegend = "≤X≤"
DiscreteLegend = "P(X="
RegressionFormula = " D: y=ax+b "
FccId = "FCC ID"
AbsCommand = "abs()"
RootCommand = "root(,)"
LogCommand = "log(,)"
DiffCommand = "diff(,)"
IntCommand = "int(,,)"
SumCommand = "sum(,,)"
ProductCommand = "product(,,)"
ArgCommand = "arg()"
ReCommand = "re()"
ImCommand = "im()"
ConjCommand = "conj()"
BinomialCommand = "binomial(,)"
PermuteCommand = "permute(,)"
GcdCommand = "gcd(,)"
LcmCommand = "lcm(,)"
RemCommand = "rem(,)"
QuoCommand = "quo(,)"
InverseCommand = "inverse()"
DeterminantCommand = "det()"
TransposeCommand = "transpose()"
TraceCommand = "trace()"
DimensionCommand = "dim()"
SortCommand = "sort<()"
InvSortCommand = "sort>()"
MaxCommand = "max()"
MinCommand = "min()"
FloorCommand = "floor()"
FracCommand = "frac()"
CeilCommand = "ceil()"
RoundCommand = "round(,)"
CoshCommand = "cosh()"
SinhCommand = "sinh()"
TanhCommand = "tanh()"
AcoshCommand = "acosh()"
AsinhCommand = "asinh()"
AtanhCommand = "atanh()"
Prediction95Command = "prediction95(,)"
PredictionCommand = "prediction(,)"
ConfidenceCommand = "confidence(,)"
AbsCommandWithArg = "abs(x)"
RootCommandWithArg = "root(x,n)"
LogCommandWithArg = "log(a,x)"
DiffCommandWithArg = "diff(f(x),a)"
IntCommandWithArg = "int(f(x),a,b)"
SumCommandWithArg = "sum(f(n),nmin,nmax)"
ProductCommandWithArg = "product(f(n),nmin,nmax)"
ArgCommandWithArg = "arg(z)"
ReCommandWithArg = "re(z)"
ImCommandWithArg = "im(z)"
ConjCommandWithArg = "conj(z)"
BinomialCommandWithArg = "binomial(n,k)"
PermuteCommandWithArg = "permute(n,r)"
GcdCommandWithArg = "gcd(p,q)"
LcmCommandWithArg = "lcm(p,q)"
RemCommandWithArg = "rem(p,q)"
QuoCommandWithArg = "quo(p,q)"
InverseCommandWithArg = "inverse(M)"
DeterminantCommandWithArg = "det(M)"
TransposeCommandWithArg = "transpose(M)"
TraceCommandWithArg = "trace(M)"
DimensionCommandWithArg = "dim(M)"
SortCommandWithArg = "sort<(L)"
InvSortCommandWithArg = "sort>(L)"
MaxCommandWithArg = "max(L)"
MinCommandWithArg = "min(L)"
FloorCommandWithArg = "floor(x)"
FracCommandWithArg = "frac(x)"
CeilCommandWithArg = "ceil(x)"
RoundCommandWithArg = "round(x,n)"
CoshCommandWithArg = "cosh(x)"
SinhCommandWithArg = "sinh(x)"
TanhCommandWithArg = "tanh(x)"
AcoshCommandWithArg = "acosh(x)"
AsinhCommandWithArg = "asinh(x)"
AtanhCommandWithArg = "atanh(x)"
Prediction95CommandWithArg = "prediction95(p,n)"
PredictionCommandWithArg = "prediction(p,n)"
ConfidenceCommandWithArg = "confidence(f,n)"
ConsolePrompt = ">>> "