MATLAB: Converting cell values from standard form

arrayconversionMATLABscientific notationstandard form

I did some multiplication/division with cell values in an array. The output is entered into the array as standard form.
array = [3.7505e+03 , 7.2224e+03] and so on
How can I change the notation to the following:
array = [37505 , 72224]

Best Answer

round()