Clear Filters
Clear Filters

Subsetting works in mlx file but not m file

2 views (last 30 days)
The following line works without any issues in an mlx file but not in an m file for some reason. Does anyone know why?
subset_table = table_1(table_1.Date == datetime('01/27/2022','InputFormat','MM/dd/uuuu'),:);
In the mlx file it works for some reason but in the m file I am getting this error:
Operator '==' is not supported for operands of type 'cell'

Answers (1)

Prateekshya
Prateekshya on 29 Sep 2023
Hi Metin,
As per my understanding you are getting inconsistent results acorss MATLAB scripts (.m) and live scripts (.mlx). The following code works perfectly fine in both the cases i.e., scripts and live scripts.
d = today("datetime")
subset_table = d == datetime('01/27/2022','InputFormat','MM/dd/uuuu')
Hence it turns out that the "table_1" variable is of type "cell". You can use "cell2table" for converting it to table format. For more information you can follow this link: https://in.mathworks.com/help/matlab/ref/cell2table.html
I hope it helps!

Categories

Find more on MATLAB in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!