Info
This question is closed. Reopen it to edit or answer.
Why do I have 2 outputs instead of 1
4 views (last 30 days)
Show older comments
Hello, I have a problem with the outputs. Instead of one output I have two. Exemple:
>> 0,1
ans =
0
ans =
1
Thank you for your help
1 Comment
Stephen23
on 10 Aug 2018
Because you are writing a comma-separated list, where the comma separates each item in the list. In MATLAB the comma always has the function as a list separator, it is not used for the decimal radix character.
Answers (1)
James Tursa
on 10 Aug 2018
Edited: James Tursa
on 10 Aug 2018
The comma in MATLAB is a separator (i.e. forms a "comma-separated-list"), not a decimal point. So typing in 0,1 is equivalent to typing in 0, pressing Enter, then typing in 1 and pressing Enter. Use a period for the decimal point. E.g.,
>> 0,1
ans =
0
ans =
1
>> 0.1
ans =
0.1000
1 Comment
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!