تبدیل یک جدول (Table) به یک آرایه ساختاری (Structure Array)، با دستور table2struct ، در متلب (MATLAB)
با استفاده از دستور table2struct
در متلب (MATLAB)، می توانیم یک جدول (Table) را به یک آرایه ساختاری (Structure Array) تبدیل کنیم.
به عنوان مثال، اگر جدولی با نام My_Table داشته باشیم، برای تبدیل آن به یک آرایه ساختاری (Structure Array)، کد متلب (MATLAB) زیر را می نویسیم :
xxxxxxxxxx
My_Structure_Array = table2struct(My_Table)
اگر جدولی با نام My_Table داشته باشیم، برای تبدیل آن به یک ساختار (Structure) اسکالر (Scalar)، دستور table2struct
را به صورت زیر به کار می بریم ( آموزش شماره 4089 ) :
xxxxxxxxxx
My_Structure_Array = table2struct(My_Table,'ToScalar',true)
به مثال زیر توجه کنید :
xxxxxxxxxx
clear all
close all
clc
column_1 = [1; 2; 3];
column_2 = [4; 5; 6];
column_3 = [7; 8; 9];
My_Table = table(column_1,column_2,column_3)
My_Structure_Array = table2struct(My_Table)
M1 = My_Structure_Array(1)
M2 = My_Structure_Array(2)
M3 = My_Structure_Array(3)
3 خط اول کدها، برای عدم تداخل برنامه فعلی با برنامه های قبلی اجرا شده در متلب (MATLAB) می باشد.
نتیجه :
xxxxxxxxxx
My_Table =
3×3 table
column_1 column_2 column_3
________ ________ ________
1 4 7
2 5 8
3 6 9
My_Structure_Array =
3×1 struct array with fields:
column_1
column_2
column_3
M1 =
struct with fields:
column_1: 1
column_2: 4
column_3: 7
M2 =
struct with fields:
column_1: 2
column_2: 5
column_3: 8
M3 =
struct with fields:
column_1: 3
column_2: 6
column_3: 9
xxxxxxxxxx
clear all
close all
clc
column_1 = [1; 2; 3];
column_2 = [4 7; 5 8; 6 9];
column_3 = [10 13 16; 11 14 17; 12 15 18];
My_Table = table(column_1,column_2,column_3)
My_Structure_Array = table2struct(My_Table)
M1 = My_Structure_Array(1)
M2 = My_Structure_Array(2)
M3 = My_Structure_Array(3)
نتیجه :
xxxxxxxxxx
My_Table =
3×3 table
column_1 column_2 column_3
________ ________ ______________
1 4 7 10 13 16
2 5 8 11 14 17
3 6 9 12 15 18
My_Structure_Array =
3×1 struct array with fields:
column_1
column_2
column_3
M1 =
struct with fields:
column_1: 1
column_2: [4 7]
column_3: [10 13 16]
M2 =
struct with fields:
column_1: 2
column_2: [5 8]
column_3: [11 14 17]
M3 =
struct with fields:
column_1: 3
column_2: [6 9]
column_3: [12 15 18]