mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
Use correct unicode symbols
This commit is contained in:
@@ -16,7 +16,7 @@ RepetitionNumber = "n: Anzahl der Versuche"
|
||||
SuccessProbability = "p: Erfolgswahrscheinlichkeit"
|
||||
IntervalDefinition = "[a,b]: Intervall"
|
||||
LambdaExponentialDefinition = "λ: Parameter"
|
||||
MeanDefinition = "μ: Erwartungswert"
|
||||
MeanDefinition = "µ: Erwartungswert"
|
||||
DeviationDefinition = "σ: Standardabweichung"
|
||||
LambdaPoissonDefinition = "λ: Parameter"
|
||||
ComputeProbability = "Wahrscheinlichkeit berechnen"
|
||||
|
||||
@@ -16,7 +16,7 @@ RepetitionNumber = "n: Number of trials"
|
||||
SuccessProbability = "p: Success probability"
|
||||
IntervalDefinition = "[a,b]: Interval"
|
||||
LambdaExponentialDefinition = "λ: Rate parameter"
|
||||
MeanDefinition = "μ: Mean"
|
||||
MeanDefinition = "µ: Mean"
|
||||
DeviationDefinition = "σ: Standard deviation"
|
||||
LambdaPoissonDefinition = "λ: Parameter"
|
||||
ComputeProbability = "Calculate probabilities"
|
||||
|
||||
@@ -16,7 +16,7 @@ RepetitionNumber = "n : Numero de ensayos "
|
||||
SuccessProbability = "p : Probabilidad de exito "
|
||||
IntervalDefinition = "[a,b] : Intervalo"
|
||||
LambdaExponentialDefinition = "λ : Parametro"
|
||||
MeanDefinition = "μ : Media"
|
||||
MeanDefinition = "µ : Media"
|
||||
DeviationDefinition = "σ : Desviacion tipica"
|
||||
LambdaPoissonDefinition = "λ : Parametro"
|
||||
ComputeProbability = "Calcular las probabilidades"
|
||||
|
||||
@@ -16,7 +16,7 @@ RepetitionNumber = "n : Nombre de repetitions"
|
||||
SuccessProbability = "p : Probabilite de succes"
|
||||
IntervalDefinition = "[a,b] : Intervalle"
|
||||
LambdaExponentialDefinition = "λ : Parametre"
|
||||
MeanDefinition = "μ : Espérance ou moyenne"
|
||||
MeanDefinition = "µ : Espérance ou moyenne"
|
||||
DeviationDefinition = "σ : Ecart type"
|
||||
LambdaPoissonDefinition = "λ : Parametre"
|
||||
ComputeProbability = "Calculer les probabilites"
|
||||
|
||||
@@ -16,7 +16,7 @@ RepetitionNumber = "n : Numero de ensaios"
|
||||
SuccessProbability = "p : Probabilidade de sucesso"
|
||||
IntervalDefinition = "[a,b] : Intervalo"
|
||||
LambdaExponentialDefinition = "λ : Parametro"
|
||||
MeanDefinition = "μ : Media"
|
||||
MeanDefinition = "µ : Media"
|
||||
DeviationDefinition = "σ : Desvio padrao"
|
||||
LambdaPoissonDefinition = "λ : Parametro"
|
||||
ComputeProbability = "Calcular probabilidades"
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
QuadraticRegressionFormula = " y=a•x^2+b•x+c "
|
||||
CubicRegressionFormula = " y=a•x^3+b•x^2+c•x+d "
|
||||
QuarticRegressionFormula = " y=a•x^4+b•x^3+c•x^2+d•x+e "
|
||||
LogarithmicRegressionFormula = " y=a•ln(x)+b "
|
||||
ExponentialRegressionFormula = " y=a•exp(b•x) "
|
||||
PowerRegressionFormula = " y=a•x^b "
|
||||
TrigonometricRegressionFormula = " y=a•sin(b•x+c)+d "
|
||||
LogisticRegressionFormula = " y=c/(a+exp(-b•x)) "
|
||||
QuadraticRegressionFormula = " y=a·x^2+b·x+c "
|
||||
CubicRegressionFormula = " y=a·x^3+b·x^2+c·x+d "
|
||||
QuarticRegressionFormula = " y=a·x^4+b·x^3+c·x^2+d·x+e "
|
||||
LogarithmicRegressionFormula = " y=a·ln(x)+b "
|
||||
ExponentialRegressionFormula = " y=a·exp(b·x) "
|
||||
PowerRegressionFormula = " y=a·x^b "
|
||||
TrigonometricRegressionFormula = " y=a·sin(b·x+c)+d "
|
||||
LogisticRegressionFormula = " y=c/(a+exp(-b·x)) "
|
||||
Dash = "-"
|
||||
|
||||
@@ -39,13 +39,13 @@ Lambda = "λ"
|
||||
LcmCommandWithArg = "lcm(p,q)"
|
||||
LeftIntegralFirstLegend = "P(X≤"
|
||||
LeftIntegralSecondLegend = ")="
|
||||
LinearRegressionFormula = " y=a•x+b "
|
||||
LinearRegressionFormula = " y=a·x+b "
|
||||
LogCommandWithArg = "log(x,a)"
|
||||
MatrixCommand = "[[\x11]]"
|
||||
MatrixCommandWithArg = "[[1,2][3,4]]"
|
||||
MaxCommandWithArg = "max(L)"
|
||||
MinCommandWithArg = "min(L)"
|
||||
Mu = "μ"
|
||||
Mu = "µ"
|
||||
N = "n"
|
||||
PermuteCommandWithArg = "permute(n,r)"
|
||||
P = "p"
|
||||
@@ -69,7 +69,7 @@ SinhCommandWithArg = "sinh(x)"
|
||||
SortCommandWithArg = "sort<(L)"
|
||||
SumCommand = "sum(\x11,n,\x11,\x11)"
|
||||
SumCommandWithArg = "sum(f(n),n,nmin,nmax)"
|
||||
Sxy = "Σxy"
|
||||
Sxy = "∑xy"
|
||||
TanhCommandWithArg = "tanh(x)"
|
||||
TraceCommandWithArg = "trace(M)"
|
||||
TransposeCommandWithArg = "transpose(M)"
|
||||
|
||||
@@ -99,7 +99,7 @@ bool LayoutField::handleEventWithText(const char * text, bool indentation, bool
|
||||
if (currentNumberOfLayouts >= k_maxNumberOfLayouts - 6) {
|
||||
/* We add -6 because in some cases (Ion::Events::Division,
|
||||
* Ion::Events::Exp...) we let the layout cursor handle the layout insertion
|
||||
* and these events may add at most 6 layouts (e.g *10^•). */
|
||||
* and these events may add at most 6 layouts (e.g *10^). */
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user