I have two datasets and I want to put them in one struct

1 Ansicht (letzte 30 Tage)
Taha Alars
Taha Alars am 18 Apr. 2019
Kommentiert: Image Analyst am 18 Apr. 2019
the photo shows example of how I want to make the struct. basically I have cst1 & cst2 and I want to put them in one struct just like the photo(features & labels)
s.jpg

Antworten (1)

Image Analyst
Image Analyst am 18 Apr. 2019
Try
s = load('cst1.mat');
data.cst1 = s.cst1;
s = load('cst2.mat');
data.cst2 = s.cst2;
  2 Kommentare
Taha Alars
Taha Alars am 18 Apr. 2019
I am getting this erorr
Reference to non-existent field 'cst1'.
Error in Usdntitled (line 2)
data.cst1 = s.cst1;
Image Analyst
Image Analyst am 18 Apr. 2019
Try
s = load('cst1.mat');
data.cst1 = s.data;
s = load('cst2.mat');
data.cst2 = s.data;

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Workspace Variables and MAT-Files finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by