フィルターのクリア

How can i make a matrix with variables from workspace.

2 ビュー (過去 30 日間)
Márcis Pinups
Márcis Pinups 2021 年 10 月 29 日
回答済み: Kshitij Chhabra 2021 年 11 月 3 日
I have made a matrix and saved the matrix lines seeratly, as for example: line1, line 2, line 3
How can I write a for loop for creating a matrix, where the programm asks which lines i want o include in my new matrix.
%Those lines are saved as a vector
line1=simulink_matrix(1,:);
line2=simulink_matrix(2,:);
line3=simulink_matrix(3,:);
  1 件のコメント
Stephen23
Stephen23 2021 年 10 月 29 日
The MATLAB approach is to use an index:
idx = [2,4,11]; % indices of the rows you want
out = simulink_matrix(idx,:);
Your current approach (with lots of numbered variables) will make this task slow, complex, and very inefficient.

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

回答 (1 件)

Kshitij Chhabra
Kshitij Chhabra 2021 年 11 月 3 日
Hi Marcais,
As Stephen mentioned in one of the comments, creation of numbered variables would be an in-efficient approach. However as you mentioned that, you want the program to ask the lines which you want to include in the output, I can recommend using the "input" keyword inside a for loop and then perform the related options accordingly. You can check the follwing code for reference
You can check the documentation for input here.

カテゴリ

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

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by