Use correct unicode symbols

This commit is contained in:
Léa Saviot
2019-01-25 14:30:09 +01:00
committed by Émilie Feral
parent 4e93a564b6
commit 5df9e0af71
8 changed files with 17 additions and 17 deletions

View File

@@ -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"

View File

@@ -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"

View File

@@ -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"

View File

@@ -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"

View File

@@ -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"

View File

@@ -1,9 +1,9 @@
QuadraticRegressionFormula = " y=ax^2+bx+c "
CubicRegressionFormula = " y=ax^3+bx^2+cx+d "
QuarticRegressionFormula = " y=ax^4+bx^3+cx^2+dx+e "
LogarithmicRegressionFormula = " y=aln(x)+b "
ExponentialRegressionFormula = " y=aexp(bx) "
PowerRegressionFormula = " y=ax^b "
TrigonometricRegressionFormula = " y=asin(bx+c)+d "
LogisticRegressionFormula = " y=c/(a+exp(-bx)) "
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 = "-"

View File

@@ -39,13 +39,13 @@ Lambda = "λ"
LcmCommandWithArg = "lcm(p,q)"
LeftIntegralFirstLegend = "P(X≤"
LeftIntegralSecondLegend = ")="
LinearRegressionFormula = " y=ax+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)"

View File

@@ -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;
}