MATLAB: I need to find natural log of a data set imported from excel in matlab.please help me with the syntax of the same

importing excel data

i need to find natural log of a data set imported from excel in matlab.please help me with the syntax of the same

Best Answer

data=xlsread('myfile.xlsx) ;
A=log(data) ;
Read about xlsread and log.
Related Question