What does âx = 1 defaultâ actually mean?
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
For context, I am a programmer, not a mathematician, so please forgive my math-ignorance.
I am implementing this calculation in an application that I am working on, but at the bottom of the page, I came across something I have not seen before.
Towards the end of the equation in points (26, 27 & 28) 3 items are individually defined as equaling 1 default. Is there any special meaning here? or can I just set their value to be 1?
Thanks!
math-software
add a comment |Â
up vote
0
down vote
favorite
For context, I am a programmer, not a mathematician, so please forgive my math-ignorance.
I am implementing this calculation in an application that I am working on, but at the bottom of the page, I came across something I have not seen before.
Towards the end of the equation in points (26, 27 & 28) 3 items are individually defined as equaling 1 default. Is there any special meaning here? or can I just set their value to be 1?
Thanks!
math-software
1
The "syntax" depends on the programming language used, but - in general - default : "refers to the preexisting value of a user-configurable setting that is assigned to a software application, computer program or device."
â Mauro ALLEGRANZA
Sep 5 at 9:52
I think the meaning of "default" is that $K_L, K_C, K_H$ usually take the value $1$, but may be given values other than $1$ if a slightly different model for $Delta E$ is required. If you are implementing the $Delta E$ calculation as a function you could make $K_L, K_C, K_H$ optional parameters which all default to a value of $1$ unless the user specifies some other value.
â gandalf61
Sep 5 at 10:05
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
For context, I am a programmer, not a mathematician, so please forgive my math-ignorance.
I am implementing this calculation in an application that I am working on, but at the bottom of the page, I came across something I have not seen before.
Towards the end of the equation in points (26, 27 & 28) 3 items are individually defined as equaling 1 default. Is there any special meaning here? or can I just set their value to be 1?
Thanks!
math-software
For context, I am a programmer, not a mathematician, so please forgive my math-ignorance.
I am implementing this calculation in an application that I am working on, but at the bottom of the page, I came across something I have not seen before.
Towards the end of the equation in points (26, 27 & 28) 3 items are individually defined as equaling 1 default. Is there any special meaning here? or can I just set their value to be 1?
Thanks!
math-software
math-software
edited Sep 5 at 11:16
Bernard
112k635104
112k635104
asked Sep 5 at 9:46
user1718699
111
111
1
The "syntax" depends on the programming language used, but - in general - default : "refers to the preexisting value of a user-configurable setting that is assigned to a software application, computer program or device."
â Mauro ALLEGRANZA
Sep 5 at 9:52
I think the meaning of "default" is that $K_L, K_C, K_H$ usually take the value $1$, but may be given values other than $1$ if a slightly different model for $Delta E$ is required. If you are implementing the $Delta E$ calculation as a function you could make $K_L, K_C, K_H$ optional parameters which all default to a value of $1$ unless the user specifies some other value.
â gandalf61
Sep 5 at 10:05
add a comment |Â
1
The "syntax" depends on the programming language used, but - in general - default : "refers to the preexisting value of a user-configurable setting that is assigned to a software application, computer program or device."
â Mauro ALLEGRANZA
Sep 5 at 9:52
I think the meaning of "default" is that $K_L, K_C, K_H$ usually take the value $1$, but may be given values other than $1$ if a slightly different model for $Delta E$ is required. If you are implementing the $Delta E$ calculation as a function you could make $K_L, K_C, K_H$ optional parameters which all default to a value of $1$ unless the user specifies some other value.
â gandalf61
Sep 5 at 10:05
1
1
The "syntax" depends on the programming language used, but - in general - default : "refers to the preexisting value of a user-configurable setting that is assigned to a software application, computer program or device."
â Mauro ALLEGRANZA
Sep 5 at 9:52
The "syntax" depends on the programming language used, but - in general - default : "refers to the preexisting value of a user-configurable setting that is assigned to a software application, computer program or device."
â Mauro ALLEGRANZA
Sep 5 at 9:52
I think the meaning of "default" is that $K_L, K_C, K_H$ usually take the value $1$, but may be given values other than $1$ if a slightly different model for $Delta E$ is required. If you are implementing the $Delta E$ calculation as a function you could make $K_L, K_C, K_H$ optional parameters which all default to a value of $1$ unless the user specifies some other value.
â gandalf61
Sep 5 at 10:05
I think the meaning of "default" is that $K_L, K_C, K_H$ usually take the value $1$, but may be given values other than $1$ if a slightly different model for $Delta E$ is required. If you are implementing the $Delta E$ calculation as a function you could make $K_L, K_C, K_H$ optional parameters which all default to a value of $1$ unless the user specifies some other value.
â gandalf61
Sep 5 at 10:05
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
Thanks,
I took a peek at the javascript implementation for the calculator on the same site.
it turns out to be just as straight forward as it looks:
var kL = 1.0;
var kC = 1.0;
var kH = 1.0;
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
Thanks,
I took a peek at the javascript implementation for the calculator on the same site.
it turns out to be just as straight forward as it looks:
var kL = 1.0;
var kC = 1.0;
var kH = 1.0;
add a comment |Â
up vote
1
down vote
Thanks,
I took a peek at the javascript implementation for the calculator on the same site.
it turns out to be just as straight forward as it looks:
var kL = 1.0;
var kC = 1.0;
var kH = 1.0;
add a comment |Â
up vote
1
down vote
up vote
1
down vote
Thanks,
I took a peek at the javascript implementation for the calculator on the same site.
it turns out to be just as straight forward as it looks:
var kL = 1.0;
var kC = 1.0;
var kH = 1.0;
Thanks,
I took a peek at the javascript implementation for the calculator on the same site.
it turns out to be just as straight forward as it looks:
var kL = 1.0;
var kC = 1.0;
var kH = 1.0;
answered Sep 5 at 10:00
user1718699
111
111
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2906083%2fwhat-does-x-1-default-actually-mean%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
1
The "syntax" depends on the programming language used, but - in general - default : "refers to the preexisting value of a user-configurable setting that is assigned to a software application, computer program or device."
â Mauro ALLEGRANZA
Sep 5 at 9:52
I think the meaning of "default" is that $K_L, K_C, K_H$ usually take the value $1$, but may be given values other than $1$ if a slightly different model for $Delta E$ is required. If you are implementing the $Delta E$ calculation as a function you could make $K_L, K_C, K_H$ optional parameters which all default to a value of $1$ unless the user specifies some other value.
â gandalf61
Sep 5 at 10:05