MATLAB: Divide column 17 of table by 365

basicbeginnerdividdivideeasyelementsmatrix divisontabletable division

Hello, I have a 1500×15 table, how do I divide every element in the 15th column by 365? Or, how do I create a new column which is column 15 divided by 365?

Best Answer

y = x{:,15}./365
x{:,16} = y
Related Question