I can't load my own dataset!
1 回表示 (過去 30 日間)
古いコメントを表示
I am having a feature vector of 1X83 and a target matrix of 5X83 and both of them are in .mat format i wanted to creat a dataset that contains them just like this: [ x, t ] = iris_dataset;
so how to create a dataset like iris_dataset?
A little help will be very appreciated please
3 件のコメント
sarath chandrika balaji
2017 年 9 月 18 日
can u help me in backpropagation code? Sorry,I'm a newbie...!!!
採用された回答
Walter Roberson
2016 年 10 月 7 日
function [x, t] = digit_dataset
datastruct = load('MatFileThatYourDataIsIn.mat');
x = datastruct.x;
t = datastruct.t;
end
5 件のコメント
Greg Heath
2016 年 10 月 8 日
I still don't see why you feel it is absolutely necessary for you to have to use the first and last commands, i.e., use a function.
It's just an option. Correct?
Greg
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Pattern Recognition and Classification についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!