Unable to perform assignment because dot indexing is not supported for variables of this type
5 views (last 30 days)
Show older comments
I can't solve my error.what should I do for running my code?
%% Load Data
data=xlsread('location','sheet'); %%measured values(decimal number)
Targets=data(1:203,7);
Inputs=data(1:203,1:6);
%%getting error here
data.Inputs=Inputs;
data.Targets=Targets;
Targets=Targets(:,1);
%%Unable to perform assignment because dot indexing is not supported for variables of this type.
0 Comments
Answers (2)
See Also
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!