I can't load my own dataset!
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Hadeer tawfik
 el 7 de Oct. de 2016
  
    
    
    
    
    Respondida: kinju Prajapati
 el 11 de En. de 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 comentarios
  sarath chandrika balaji
 el 18 de Sept. de 2017
				can u help me in backpropagation code? Sorry,I'm a newbie...!!!
Respuesta aceptada
  Walter Roberson
      
      
 el 7 de Oct. de 2016
        function [x, t] = digit_dataset
  datastruct = load('MatFileThatYourDataIsIn.mat');
  x = datastruct.x;
  t = datastruct.t;
end
5 comentarios
  Greg Heath
      
      
 el 8 de Oct. de 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
  Walter Roberson
      
      
 el 8 de Oct. de 2016
				Más respuestas (1)
  kinju Prajapati
 el 11 de En. de 2019
        how to load owndataset ???just like iris_dataset..
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




