I can't load my own dataset!
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hadeer tawfik
il 7 Ott 2016
Risposto: kinju Prajapati
il 11 Gen 2019
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 Commenti
sarath chandrika balaji
il 18 Set 2017
can u help me in backpropagation code? Sorry,I'm a newbie...!!!
Risposta accettata
Walter Roberson
il 7 Ott 2016
function [x, t] = digit_dataset
datastruct = load('MatFileThatYourDataIsIn.mat');
x = datastruct.x;
t = datastruct.t;
end
5 Commenti
Greg Heath
il 8 Ott 2016
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
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Pattern Recognition and Classification in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!