Unrecognized function or variable 'carsmall'
Show older comments
Hello, I'm doing a very basic exercise which starts with importing carsmall.mat dataset and protting its data with gplotmatrix(). Here is the code I wrote:
clear all;
close all;
clc;
%% Initialization
load carsmall.mat;
figure()
gplotmatrix(carsmall');
The problem is that when I run the script I get this output message:
Unrecognized function or variable 'carsmall'.
Error in Exercise_3_1 (line 8)
gplotmatrix(carsmall);
I don't get it. I have the Statistics and Machine Learning Toolbox installed. I'he done the same exercise importing iris_dataset.mat and it all worked fine.
Can anybody please help me? I've also updated anything possible but nothing changed...
Thank you
Accepted Answer
More Answers (0)
Categories
Find more on Multiple Linear Regression in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!