フィルターのクリア

creating combinations for different data type

3 ビュー (過去 30 日間)
PA
PA 2023 年 7 月 20 日
コメント済み: PA 2023 年 7 月 20 日
i have two inputs which has 2 differnt data types and i wanted to create combinations.
The first Column1 has input1 = 8, Age
The Secind Column 2 has input2 = 20, gender
And i want to create a combinations something like this
8,Age
20,Age
8,gender
20,gender
  1 件のコメント
Dyuman Joshi
Dyuman Joshi 2023 年 7 月 20 日
Create a Cell array or a Table and use nchoosek to make combinations and indexing to implement it.

サインインしてコメントする。

回答 (1 件)

Steven Lord
Steven Lord 2023 年 7 月 20 日
If you're using release R2023a or later use the combinations function.
T = combinations([8, 20], ["Age", "Gender"])
T = 4×2 table
Var1 Var2 ____ ________ 8 "Age" 8 "Gender" 20 "Age" 20 "Gender"
  1 件のコメント
PA
PA 2023 年 7 月 20 日
Thanks! But I am using 2019 so i cannot use the combinations function . Is there any other possible way apart from this?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeResizing and Reshaping Matrices についてさらに検索

タグ

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by