Equivalent command in version R2017a for loading iris dataset

6 vues (au cours des 30 derniers jours)
Marimuthu Ananthavelu
Marimuthu Ananthavelu le 12 Mai 2017
Modifié(e) : John D'Errico le 25 Mai 2022
load iris.dat
is the command which was used for loading the iris dataset.
Using the same command in the recent version R2017A gives me the following error;
Error using load
Unable to read file 'iris.dat'. No such file or directory.
Error in example_SOM_Iris (line 7)
load iris.dat
Also,using ,
load fisheriris.mat
does not help. Any idea?

Réponse acceptée

Steven Lord
Steven Lord le 12 Mai 2017
iris.dat:
It appears this data file is included in Fuzzy Logic Toolbox for use in one of its examples, specifically this example. If you do not have Fuzzy Logic Toolbox installed, you will not have this data set installed.
fisheriris.mat:
Used by examples in Statistics and Machine Learning Toolbox, 14 different examples according to the search results. Again, if you do not have Statistics and Machine Learning Toolbox installed, you will not have this data set installed.
To see what products you have installed, use the ver function.
Broadening the search to examples in all products for the term "iris", it appears that Image Acquisition Toolbox and Neural Network Toolbox also have examples that use iris data. Since you or someone tagged this with the Neural Network Toolbox product, I suspect you want to run this example. That example uses the command x = iris_dataset; to read in its data.
  3 commentaires
safayat hossain
safayat hossain le 28 Juin 2021
unable to read file 'iris.mat'. NO such file or directory.
How to solve this issue?
John D'Errico
John D'Errico le 25 Mai 2022
Modifié(e) : John D'Errico le 25 Mai 2022
@safayat hossain, If you have the stats toolbox, it will be found in the form of fisheriris.mat. That is:
iris = load('fisheriris.mat')
iris = struct with fields:
species: {150×1 cell} meas: [150×4 double]

Connectez-vous pour commenter.

Plus de réponses (1)

Walter Roberson
Walter Roberson le 12 Mai 2017
iris.dat is part of the Fuzzy Logic Toolbox. You probably do not have that installed.

Catégories

En savoir plus sur Deep Learning Toolbox dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by