How to put conditions to use data from command window

1 回表示 (過去 30 日間)
Esila Darci
Esila Darci 2022 年 1 月 19 日
編集済み: Esila Darci 2022 年 1 月 25 日
Hello all,
I am using one code and in that code i received output from my program in the Command Window, and i would like to use that output in the same code to apply for condition
Speed= [400 : 100 : 1200] (in the code)
I would like to put the condition in this way
CD= 0.018 (Value directly in the code)
then use CD value in the below condition by using AB and BC value
If AB<CD>BC then successful at speed 10 ,
if above condition not satisfy then unsuccessful at speed 10
Similarly for other different speed as per code (Speed= [10 : 10 : 40] )
If AB<CD>BC then successful at Speed= [10 : 10 : 40]
if above condition not satisfy then unsuccessful at Speed= [10 : 10 : 40]
Thank you so much
  7 件のコメント
Esila Darci
Esila Darci 2022 年 1 月 19 日
Sorry @Rik , The code is so big, if i write here then you will spent complete day to understand. I don't want to take your complete day , as you need to help other as well. Instead, can you give me syntax to put above condition and receive output as i want in the command window. That would be great help for me.
I would like to put the condition in this way
CD= 0.018 (Value directly in the code)
then use CD value in the below condition by using AB and BC value
If AB<CD>BC then successful at speed 10 ,
if above condition not satisfy then unsuccessful at speed 10
Similarly for other different speed as per code (Speed= [10 : 10 : 40] )
If AB<CD>BC then successful at Speed= [10 : 10 : 40]
if above condition not satisfy then unsuccessful at Speed= [10 : 10 : 40]
then all this successful condition should come in the command window at last
Thank u so much
Rik
Rik 2022 年 1 月 19 日
I don't need the entire code. The point is that there is some code that will print the two number to the command window. If you edit that part of the code so that it returns the two values as output arguments, you can do the conditional part next yourself.
Note that a<b>c means something else in Matlab than it does in normal Mathematics. You need (a<b) && (b>c) instead.

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

回答 (1 件)

Walter Roberson
Walter Roberson 2022 年 1 月 19 日
Assuming that CD is a scalar, and that AB and BC are column vectors and that Speed is a row vector:
statuses = ["unsuccessful", "successful"};
mask = AB < CD & AB > BC;
status = statuses(mask+1);
results = compose("%20.17f %20.17f (%s at %g speed)", AB, BC, statuses, Speed(:))

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by