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!