I have encountered a strange problem. I receive this error while running my code:
Undefined function 'head' for input arguments of type 'table'.
filename = 'C:\\Users\\farazpc.ir\\Downloads\\Telegram
Desktop\\MainDataset.csv';
m = readtable(filename);
h = head(m,500);
Although I have checked with ver and which commands and I have this function and I have tried to set a path for this method from Home in Matlab then set path part. I followed the instructions from this link:
https://www.mathworks.com/help/matlab/matlab_prog/calling-functions.html
Here is the path for the head method:
which head
H:\signal matlab\toolbox\matlab\bigdata\@tall\head.m % tall method
My Matlab version is 2016b. I am really confused and need help. Thanks in advance.