How to put conditions to use data from command window
Afficher commentaires plus anciens
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 commentaires
Esila Darci
le 19 Jan 2022
Modifié(e) : Esila Darci
le 19 Jan 2022
Esila Darci
le 19 Jan 2022
If you are in such a hurry to get an answer you should hire someone. Why did you @ mention a lot of people again? You were told last year not to do that.
To turn to your actual question: it is much easier to do things with the output of a function if you can get to the data directly. Does it print data to the command window? Can you edit the code to return it as data? If not, can you edit the code to write the text to a file?
Esila Darci
le 19 Jan 2022
Esila Darci
le 19 Jan 2022
Rik
le 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.
Réponses (1)
Walter Roberson
le 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(:))
Catégories
En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!