a Function to Push Numbers Away From a Central Number
I'm looking for a function that takes an array of values between a..b (like 0..1) and a central point a < c < b (like 0.5) and a factor (like 2, 3, 4, etc) and pushes all the array's values away from the central point.
For example if we have [0.0, 0.25, 0.48, 0.56, 0.87, 0.98] as input to the function, I'm expecting to get something like [0.0, 0.23, 0.41, 0.65, 0.895, 0.9848]. The factor number should be able to control how much the numbers are stretched away from the central point.
There are some implementation details like how much should the factor affect the stretching that I leave up to you. I just want a pushing function to do something as mentioned above.
If there is a name for these kinds of function, I'd be glad if you could point me towards that direction.
Thanks...
functions percentages
add a comment |
I'm looking for a function that takes an array of values between a..b (like 0..1) and a central point a < c < b (like 0.5) and a factor (like 2, 3, 4, etc) and pushes all the array's values away from the central point.
For example if we have [0.0, 0.25, 0.48, 0.56, 0.87, 0.98] as input to the function, I'm expecting to get something like [0.0, 0.23, 0.41, 0.65, 0.895, 0.9848]. The factor number should be able to control how much the numbers are stretched away from the central point.
There are some implementation details like how much should the factor affect the stretching that I leave up to you. I just want a pushing function to do something as mentioned above.
If there is a name for these kinds of function, I'd be glad if you could point me towards that direction.
Thanks...
functions percentages
add a comment |
I'm looking for a function that takes an array of values between a..b (like 0..1) and a central point a < c < b (like 0.5) and a factor (like 2, 3, 4, etc) and pushes all the array's values away from the central point.
For example if we have [0.0, 0.25, 0.48, 0.56, 0.87, 0.98] as input to the function, I'm expecting to get something like [0.0, 0.23, 0.41, 0.65, 0.895, 0.9848]. The factor number should be able to control how much the numbers are stretched away from the central point.
There are some implementation details like how much should the factor affect the stretching that I leave up to you. I just want a pushing function to do something as mentioned above.
If there is a name for these kinds of function, I'd be glad if you could point me towards that direction.
Thanks...
functions percentages
I'm looking for a function that takes an array of values between a..b (like 0..1) and a central point a < c < b (like 0.5) and a factor (like 2, 3, 4, etc) and pushes all the array's values away from the central point.
For example if we have [0.0, 0.25, 0.48, 0.56, 0.87, 0.98] as input to the function, I'm expecting to get something like [0.0, 0.23, 0.41, 0.65, 0.895, 0.9848]. The factor number should be able to control how much the numbers are stretched away from the central point.
There are some implementation details like how much should the factor affect the stretching that I leave up to you. I just want a pushing function to do something as mentioned above.
If there is a name for these kinds of function, I'd be glad if you could point me towards that direction.
Thanks...
functions percentages
functions percentages
asked Dec 12 '18 at 7:04
CypherCypher
1348
1348
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Try this function,
$$f(x)=frac{c+mk(frac{c-x}{x-m})}{1+k(frac{c-x}{x-m})}$$
where $m=a$ if $a<x<c$ and $m=b$ if $c<x<b$.
(This function comes by solving $frac{c-f(x)}{f(x)-a}=k(frac{c-x}{x-a})$)
Hope it is helpful:)
This is really good, the only problem is it has a NaN problem where x = a or x = b. What should I do about it?
– Cypher
Dec 12 '18 at 10:06
I think a,b and c are not in the domain of the function because the task is to push that number within limits of a & b and pushing a or b will go out of the limits.
– Martund
Dec 12 '18 at 10:12
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3036346%2fa-function-to-push-numbers-away-from-a-central-number%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try this function,
$$f(x)=frac{c+mk(frac{c-x}{x-m})}{1+k(frac{c-x}{x-m})}$$
where $m=a$ if $a<x<c$ and $m=b$ if $c<x<b$.
(This function comes by solving $frac{c-f(x)}{f(x)-a}=k(frac{c-x}{x-a})$)
Hope it is helpful:)
This is really good, the only problem is it has a NaN problem where x = a or x = b. What should I do about it?
– Cypher
Dec 12 '18 at 10:06
I think a,b and c are not in the domain of the function because the task is to push that number within limits of a & b and pushing a or b will go out of the limits.
– Martund
Dec 12 '18 at 10:12
add a comment |
Try this function,
$$f(x)=frac{c+mk(frac{c-x}{x-m})}{1+k(frac{c-x}{x-m})}$$
where $m=a$ if $a<x<c$ and $m=b$ if $c<x<b$.
(This function comes by solving $frac{c-f(x)}{f(x)-a}=k(frac{c-x}{x-a})$)
Hope it is helpful:)
This is really good, the only problem is it has a NaN problem where x = a or x = b. What should I do about it?
– Cypher
Dec 12 '18 at 10:06
I think a,b and c are not in the domain of the function because the task is to push that number within limits of a & b and pushing a or b will go out of the limits.
– Martund
Dec 12 '18 at 10:12
add a comment |
Try this function,
$$f(x)=frac{c+mk(frac{c-x}{x-m})}{1+k(frac{c-x}{x-m})}$$
where $m=a$ if $a<x<c$ and $m=b$ if $c<x<b$.
(This function comes by solving $frac{c-f(x)}{f(x)-a}=k(frac{c-x}{x-a})$)
Hope it is helpful:)
Try this function,
$$f(x)=frac{c+mk(frac{c-x}{x-m})}{1+k(frac{c-x}{x-m})}$$
where $m=a$ if $a<x<c$ and $m=b$ if $c<x<b$.
(This function comes by solving $frac{c-f(x)}{f(x)-a}=k(frac{c-x}{x-a})$)
Hope it is helpful:)
answered Dec 12 '18 at 9:51
MartundMartund
1,407212
1,407212
This is really good, the only problem is it has a NaN problem where x = a or x = b. What should I do about it?
– Cypher
Dec 12 '18 at 10:06
I think a,b and c are not in the domain of the function because the task is to push that number within limits of a & b and pushing a or b will go out of the limits.
– Martund
Dec 12 '18 at 10:12
add a comment |
This is really good, the only problem is it has a NaN problem where x = a or x = b. What should I do about it?
– Cypher
Dec 12 '18 at 10:06
I think a,b and c are not in the domain of the function because the task is to push that number within limits of a & b and pushing a or b will go out of the limits.
– Martund
Dec 12 '18 at 10:12
This is really good, the only problem is it has a NaN problem where x = a or x = b. What should I do about it?
– Cypher
Dec 12 '18 at 10:06
This is really good, the only problem is it has a NaN problem where x = a or x = b. What should I do about it?
– Cypher
Dec 12 '18 at 10:06
I think a,b and c are not in the domain of the function because the task is to push that number within limits of a & b and pushing a or b will go out of the limits.
– Martund
Dec 12 '18 at 10:12
I think a,b and c are not in the domain of the function because the task is to push that number within limits of a & b and pushing a or b will go out of the limits.
– Martund
Dec 12 '18 at 10:12
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3036346%2fa-function-to-push-numbers-away-from-a-central-number%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown