How to express the result of a conversion?
up vote
0
down vote
favorite
"With this converter, one can convert A to B." Then the result of that conversion from A is B. How to attribute B later to let others know it was converted from something else?
- Converted B can be used to do something.
- B, as the conversion result from A, can be used to do something.
Sentence 1 sounds like B is the object that was just converted. And Sentence 2 is too long and I don't know if it is appropriate to say "conversion result".
A and B are conceptions from programming or software. For example, to convert an integer
to float
.
expressions
New contributor
|
show 3 more comments
up vote
0
down vote
favorite
"With this converter, one can convert A to B." Then the result of that conversion from A is B. How to attribute B later to let others know it was converted from something else?
- Converted B can be used to do something.
- B, as the conversion result from A, can be used to do something.
Sentence 1 sounds like B is the object that was just converted. And Sentence 2 is too long and I don't know if it is appropriate to say "conversion result".
A and B are conceptions from programming or software. For example, to convert an integer
to float
.
expressions
New contributor
1
Do you mean, for example, that A could be a liquid measure expressed in litres and B the same quantity expressed US gallons? If so you could say "A, expressed as B, can be used to calculate fuel consumption in a manner meaningful to American motorists"
– BoldBen
Dec 8 at 5:27
A and B are conceptions from programming or software. Updated the question.
– zwcloud
Dec 8 at 5:29
Are you changing the definition of the variable without changing its value or are you creating a new variable with a different name and moving the new value to it? That is if you defined a variable price of type currency so that it only had two decimal places then passed it to your function would the function return price of type float or would it return a new variable (taxedPrice, say) of type float containing the value of price but capable of being multiplied by a non-integer tax rate and not having its decimal places truncated?
– BoldBen
Dec 8 at 5:55
A and B are basically different kind of things. For example, A is a solid box (13cm*12cm*10cm) made of steel and B is a solid box made of copper. But the shape (13cm*12cm*10cm) of B is sampled from A. An imaginary converter takes A and converts it into B.
– zwcloud
Dec 8 at 6:15
Regard the converter as a function, a black-box.
– zwcloud
Dec 8 at 6:18
|
show 3 more comments
up vote
0
down vote
favorite
up vote
0
down vote
favorite
"With this converter, one can convert A to B." Then the result of that conversion from A is B. How to attribute B later to let others know it was converted from something else?
- Converted B can be used to do something.
- B, as the conversion result from A, can be used to do something.
Sentence 1 sounds like B is the object that was just converted. And Sentence 2 is too long and I don't know if it is appropriate to say "conversion result".
A and B are conceptions from programming or software. For example, to convert an integer
to float
.
expressions
New contributor
"With this converter, one can convert A to B." Then the result of that conversion from A is B. How to attribute B later to let others know it was converted from something else?
- Converted B can be used to do something.
- B, as the conversion result from A, can be used to do something.
Sentence 1 sounds like B is the object that was just converted. And Sentence 2 is too long and I don't know if it is appropriate to say "conversion result".
A and B are conceptions from programming or software. For example, to convert an integer
to float
.
expressions
expressions
New contributor
New contributor
edited Dec 8 at 5:30
New contributor
asked Dec 8 at 5:01
zwcloud
1034
1034
New contributor
New contributor
1
Do you mean, for example, that A could be a liquid measure expressed in litres and B the same quantity expressed US gallons? If so you could say "A, expressed as B, can be used to calculate fuel consumption in a manner meaningful to American motorists"
– BoldBen
Dec 8 at 5:27
A and B are conceptions from programming or software. Updated the question.
– zwcloud
Dec 8 at 5:29
Are you changing the definition of the variable without changing its value or are you creating a new variable with a different name and moving the new value to it? That is if you defined a variable price of type currency so that it only had two decimal places then passed it to your function would the function return price of type float or would it return a new variable (taxedPrice, say) of type float containing the value of price but capable of being multiplied by a non-integer tax rate and not having its decimal places truncated?
– BoldBen
Dec 8 at 5:55
A and B are basically different kind of things. For example, A is a solid box (13cm*12cm*10cm) made of steel and B is a solid box made of copper. But the shape (13cm*12cm*10cm) of B is sampled from A. An imaginary converter takes A and converts it into B.
– zwcloud
Dec 8 at 6:15
Regard the converter as a function, a black-box.
– zwcloud
Dec 8 at 6:18
|
show 3 more comments
1
Do you mean, for example, that A could be a liquid measure expressed in litres and B the same quantity expressed US gallons? If so you could say "A, expressed as B, can be used to calculate fuel consumption in a manner meaningful to American motorists"
– BoldBen
Dec 8 at 5:27
A and B are conceptions from programming or software. Updated the question.
– zwcloud
Dec 8 at 5:29
Are you changing the definition of the variable without changing its value or are you creating a new variable with a different name and moving the new value to it? That is if you defined a variable price of type currency so that it only had two decimal places then passed it to your function would the function return price of type float or would it return a new variable (taxedPrice, say) of type float containing the value of price but capable of being multiplied by a non-integer tax rate and not having its decimal places truncated?
– BoldBen
Dec 8 at 5:55
A and B are basically different kind of things. For example, A is a solid box (13cm*12cm*10cm) made of steel and B is a solid box made of copper. But the shape (13cm*12cm*10cm) of B is sampled from A. An imaginary converter takes A and converts it into B.
– zwcloud
Dec 8 at 6:15
Regard the converter as a function, a black-box.
– zwcloud
Dec 8 at 6:18
1
1
Do you mean, for example, that A could be a liquid measure expressed in litres and B the same quantity expressed US gallons? If so you could say "A, expressed as B, can be used to calculate fuel consumption in a manner meaningful to American motorists"
– BoldBen
Dec 8 at 5:27
Do you mean, for example, that A could be a liquid measure expressed in litres and B the same quantity expressed US gallons? If so you could say "A, expressed as B, can be used to calculate fuel consumption in a manner meaningful to American motorists"
– BoldBen
Dec 8 at 5:27
A and B are conceptions from programming or software. Updated the question.
– zwcloud
Dec 8 at 5:29
A and B are conceptions from programming or software. Updated the question.
– zwcloud
Dec 8 at 5:29
Are you changing the definition of the variable without changing its value or are you creating a new variable with a different name and moving the new value to it? That is if you defined a variable price of type currency so that it only had two decimal places then passed it to your function would the function return price of type float or would it return a new variable (taxedPrice, say) of type float containing the value of price but capable of being multiplied by a non-integer tax rate and not having its decimal places truncated?
– BoldBen
Dec 8 at 5:55
Are you changing the definition of the variable without changing its value or are you creating a new variable with a different name and moving the new value to it? That is if you defined a variable price of type currency so that it only had two decimal places then passed it to your function would the function return price of type float or would it return a new variable (taxedPrice, say) of type float containing the value of price but capable of being multiplied by a non-integer tax rate and not having its decimal places truncated?
– BoldBen
Dec 8 at 5:55
A and B are basically different kind of things. For example, A is a solid box (13cm*12cm*10cm) made of steel and B is a solid box made of copper. But the shape (13cm*12cm*10cm) of B is sampled from A. An imaginary converter takes A and converts it into B.
– zwcloud
Dec 8 at 6:15
A and B are basically different kind of things. For example, A is a solid box (13cm*12cm*10cm) made of steel and B is a solid box made of copper. But the shape (13cm*12cm*10cm) of B is sampled from A. An imaginary converter takes A and converts it into B.
– zwcloud
Dec 8 at 6:15
Regard the converter as a function, a black-box.
– zwcloud
Dec 8 at 6:18
Regard the converter as a function, a black-box.
– zwcloud
Dec 8 at 6:18
|
show 3 more comments
1 Answer
1
active
oldest
votes
up vote
0
down vote
I think the result of conversion can be just 'a convert'. According to Merriam-Webster's Dictionary:
convert noun
con·vert | ˈkän-ˌvərt
Definition of convert
: one that is converted.
I realize the noun has a strong religious reference, but the new meaning may appear via the metaphorical transfer in the actual context.
A convert is a person ('one' in the definition) converted to another religion.
– Alex_ander
Dec 8 at 7:10
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I think the result of conversion can be just 'a convert'. According to Merriam-Webster's Dictionary:
convert noun
con·vert | ˈkän-ˌvərt
Definition of convert
: one that is converted.
I realize the noun has a strong religious reference, but the new meaning may appear via the metaphorical transfer in the actual context.
A convert is a person ('one' in the definition) converted to another religion.
– Alex_ander
Dec 8 at 7:10
add a comment |
up vote
0
down vote
I think the result of conversion can be just 'a convert'. According to Merriam-Webster's Dictionary:
convert noun
con·vert | ˈkän-ˌvərt
Definition of convert
: one that is converted.
I realize the noun has a strong religious reference, but the new meaning may appear via the metaphorical transfer in the actual context.
A convert is a person ('one' in the definition) converted to another religion.
– Alex_ander
Dec 8 at 7:10
add a comment |
up vote
0
down vote
up vote
0
down vote
I think the result of conversion can be just 'a convert'. According to Merriam-Webster's Dictionary:
convert noun
con·vert | ˈkän-ˌvərt
Definition of convert
: one that is converted.
I realize the noun has a strong religious reference, but the new meaning may appear via the metaphorical transfer in the actual context.
I think the result of conversion can be just 'a convert'. According to Merriam-Webster's Dictionary:
convert noun
con·vert | ˈkän-ˌvərt
Definition of convert
: one that is converted.
I realize the noun has a strong religious reference, but the new meaning may appear via the metaphorical transfer in the actual context.
edited Dec 8 at 7:10
answered Dec 8 at 6:38
user307254
1,079110
1,079110
A convert is a person ('one' in the definition) converted to another religion.
– Alex_ander
Dec 8 at 7:10
add a comment |
A convert is a person ('one' in the definition) converted to another religion.
– Alex_ander
Dec 8 at 7:10
A convert is a person ('one' in the definition) converted to another religion.
– Alex_ander
Dec 8 at 7:10
A convert is a person ('one' in the definition) converted to another religion.
– Alex_ander
Dec 8 at 7:10
add a comment |
zwcloud is a new contributor. Be nice, and check out our Code of Conduct.
zwcloud is a new contributor. Be nice, and check out our Code of Conduct.
zwcloud is a new contributor. Be nice, and check out our Code of Conduct.
zwcloud is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to English Language & Usage 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.
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%2fenglish.stackexchange.com%2fquestions%2f476085%2fhow-to-express-the-result-of-a-conversion%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
1
Do you mean, for example, that A could be a liquid measure expressed in litres and B the same quantity expressed US gallons? If so you could say "A, expressed as B, can be used to calculate fuel consumption in a manner meaningful to American motorists"
– BoldBen
Dec 8 at 5:27
A and B are conceptions from programming or software. Updated the question.
– zwcloud
Dec 8 at 5:29
Are you changing the definition of the variable without changing its value or are you creating a new variable with a different name and moving the new value to it? That is if you defined a variable price of type currency so that it only had two decimal places then passed it to your function would the function return price of type float or would it return a new variable (taxedPrice, say) of type float containing the value of price but capable of being multiplied by a non-integer tax rate and not having its decimal places truncated?
– BoldBen
Dec 8 at 5:55
A and B are basically different kind of things. For example, A is a solid box (13cm*12cm*10cm) made of steel and B is a solid box made of copper. But the shape (13cm*12cm*10cm) of B is sampled from A. An imaginary converter takes A and converts it into B.
– zwcloud
Dec 8 at 6:15
Regard the converter as a function, a black-box.
– zwcloud
Dec 8 at 6:18