How to put conditions to use data from command window

1 view (last 30 days)
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 Comments
Esila Darci
Esila Darci on 19 Jan 2022
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 on 19 Jan 2022
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.

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 19 Jan 2022
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(:))

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!