How to create multiple structure variables and assign values to them at one line.

4 ビュー (過去 30 日間)
mohammed tarek
mohammed tarek 2023 年 3 月 16 日
編集済み: Dyuman Joshi 2023 年 3 月 16 日
I want to create a structure type for example 'AC' and assign values to its fields all at one line as follows:
[AC.a, AC.b] = [5, 15]

回答 (2 件)

Dyuman Joshi
Dyuman Joshi 2023 年 3 月 16 日
編集済み: Dyuman Joshi 2023 年 3 月 16 日
%Assign any type of data to a field
[AC.a, AC.b, AC.c, AC.d] = deal(5, 15, {'cell'}, '0');
AC
AC = struct with fields:
a: 5 b: 15 c: {'cell'} d: '0'

Voss
Voss 2023 年 3 月 16 日
One way:
[AC.a, AC.b] = deal(5, 15);
AC
AC = struct with fields:
a: 5 b: 15
Another way:
C = {5, 15};
[AC.a, AC.b] = C{:};
AC
AC = struct with fields:
a: 5 b: 15

カテゴリ

Help Center および File ExchangeString Parsing についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by