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!