Unrecognized function or variable 'carsmall'
显示 更早的评论
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
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Multiple Linear Regression 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!