Troubles with data types: integers, doubles, scientific notation, and type casting
Show older comments
I have a vector of integer elements, and most/all elements are in the thousands. When I look at the vector, some numbers are display in the normal format (eg, 5037) but some are displayed in scienfitic notation (eg 4.2890e+03). When I call the isinteger() function on my variable, it returns false. I think it is probably due to the way that some elements are stored in scientific notation, but I havent found any way, looking online, to force the variable to save all elements in the normal format. If I call isinteger(round()) on my variable, it still returns false. I also cannot typecast my vector to be eg. int16 (which I will get to in a minute).
The reason I need integer values is that some of these values will be used to index an array. I am using the "S = sparse(i,j,v,m,n,nz)" function, and the values m,n,nz all come from my variable. If I try to run it as is, where all of the values are actually integers but Matlab does not recognize them as such, I get the error message

Every one of the elements should be integers, but it throws me an error regardless. Just so you can see what my variables are,
n = numel(x);
idx = 1:n;
x is my integer-valued double vector, and k is a particular element from x.
The documentation for sparse indicates that it shouldn't be problematic, as it says the first two terms (i,j aka idx, x) can be "Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64 | logical", the third term (v aka 1) can be "Data Types: double | logical", the fourth and fifth terms (m,n aka n,k) can be "Data Types: double" and the last term (nz aka n) can be "Data Types: double"
Based on the documentation, I don't understand why it won't accept my values -- it claims the type "double" is supported for every single input term.
If I try casting my vector, x, to be something else, like an int16, I get the error

even though the documentation claims that it accepts "single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64 | logical"
How can I resolve this? Is there any way to force all of the elements in my vector to be saved in the normal format and not scientific notation? Why do I get an error about input types when the documentation claims that data type is supported?
3 Comments
Stephen23
on 30 Apr 2020
"When I call the isinteger() function on my variable, it returns false. I think it is probably due to the way that some elements are stored in scientific notation..."
No, you are confusing integer types with integer classes. As its documentation for isinteger states, it "...returns logical 1 (true) if A is an array of integer type.", but your array is NOT integer type, your array has type double and so will always return false, regardless of the values it contains (i.e. even if they are all integer values). Nowhere in the isinteger documentation does it suggest that isinteger will check the values of floating point arrays.
The basic data types are introduced here:
"...where all of the values are actually integers..."
That error message clearly tells us that they aren't all integer valued. Based on the start of your question "When I look at the vector, some numbers are display in the normal format (eg, 5037) but some are displayed in scienfitic notation ..." apparently your checking method was simply to look at values displayed in the Command Window or in the Variable Editor/Viewer. Simply looking at how data is displayed is not a robust way to check if it is integer valued or not, nor is it even a particularly reliable method to know the "exact" floating point value (search this forum for "binary floating point" to know more). How data are displayed and how data are stored in memory are two very different things and should not be mixed up.
A robust test like this would let you know how many non-integer-valued elements your array idx has:
>> idx = [0,eps(0),1,1+eps(1)];
>> nnz(mod((idx(:)),1))
ans = 2
"Is there any way to force all of the elements in my vector to be saved in the normal format and not scientific notation?"
Numeric data classes do NOT store any formatting information whatsoever, how the data happens to be displayed at a particular moment by one particular widget is an attribute of that widget and not an attribute of the data class.
How data is displayed is not the same things as how data is stored in computer memory. Do not confuse the two.
Hannah D
on 30 Apr 2020
James Tursa
on 30 Apr 2020
I am asking again, please show us a complete small example that demonstrates the problem, not just code snippets. And not pictures of code ... post your code as text and format it with the CODE button.
Accepted Answer
More Answers (3)
James Tursa
on 29 Apr 2020
Edited: James Tursa
on 29 Apr 2020
0 votes
You are confusing integer "types" with integer "values". Integer types are int8, uint8, ... int16, uint64. Integer values a 1, 2, 3, etc. You can store integer "values" in floating point types (single or double) or in integer types (int8, uint16, etc.).
You are also confusing the stored value with the displayed value. A stored integer value can display as an integer format or can display as a floating point format. But how it is displayed on your screen does not affect the underlying storage value. The display format depends on the value and your display settings.
For your particular problem, you need to provide us with a specific example of where you think you are feeding the sparse( ) function proper inputs (show them to us) and then copy & paste the entire error message for us to see. If sparse( ) is complaining that your index arrays are not integer values, then they aren't. And the data values for a sparse matrix need to be either double or logical ... no other sparse matrix data types are supported.
If all of your inputs are type double, and your indexing arrays have only positive integer values, then things should work for you.
3 Comments
James Tursa
on 30 Apr 2020
"... I did provide both the inputs ..."
No. There is a difference between describing your inputs and actually providing your inputs. You need to show us complete code that creates the inputs and calls sparse( ) so we can run it and diagnose things on our own. It may very well be that the documentation is incomplete or incorrect as you say, but we would like to see the code that demonstrates it.
Hannah D
on 30 Apr 2020
Steven Lord
on 30 Apr 2020
Which release of MATLAB are you using? The ability to specify the subscripts (the first two inputs) in the sparse function as arrays of an integer type was added in release R2020a.
From the error message you're receiving, you have at least one element in x that is not an integer value. Find the elements that are not an integer value with:
find(x ~= round(x))
4 Comments
Hannah D
on 30 Apr 2020
Stephen23
on 30 Apr 2020
"...but even if I call the round() function before feeding them into sparse(), it still gives me errors"
Please save the exact variables that you are inputting to sparse and upload them here by clicking the paperclip button. Do not alter them in any way: just save and upload.
Steven Lord
on 30 Apr 2020
I agree with Stephen Cobeldick. Either upload the exact data you pass into the sparse function or give us a complete code that we can run with which you can reproduce the behavior. You're going to want to set the random number generator to a specific state with rng before calling rand and randn so we can reproduce exactly what you ran.
Guillaume
on 30 Apr 2020
Well, it's fairly easy to reproduce the problem with for example just:
left = [1.127 2; 0 0]
I've explained the problem in my answer.
Hannah D
on 30 Apr 2020
0 votes
3 Comments
Guillaume
on 30 Apr 2020
I've given you a proper explanation of the problem and a much better solution that calling round after each point.
Hannah D
on 30 Apr 2020
James Tursa
on 1 May 2020
@Hannah: I do not mean to be harsh, but this sounds like you don't really understand your problem and you have put a bandaid on it. If you understood the problem and what the floating point calculations are doing, you would be able to create better code as Guillaume has suggested and avoid sprinkling round( ) all over your code until things seem to work ... this time. It would be better if you took the time to understand why you are getting the problems at each step and then write better code to avoid those problems in the first place.
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



