Why are alternative forms for "dbstop in file at location if expression" not documented?

1 vue (au cours des 30 derniers jours)
This question is prompted by another question here.
It was fairly easy to guess that
dbstop('file','10')
would set a breakpoint in file.m at line 10. I can see that also it accepts a structure as generated by dbstatus.
Shouldn't it be possible, though, to use the above format with various arguments to obtain most or all of the seventeen behaviors listed in the documentation? If so, why are these forms not documented? If not, why does the above code work?
Edit: I just found the contextual function hints. The answer is
dbstop('in','file','at','line','if','expression')
But I'll accept an answer that can explain the reasoning behind the more common forms.

Réponse acceptée

John D'Errico
John D'Errico le 15 Nov 2021
Modifié(e) : John D'Errico le 15 Nov 2021
All commands in MATLAB are actually implemented as functions. There is a command/function duality in existence. So you can always call the function as if you were issuing a command, if you provide the proper arguments to that function. This is true for any command, as far as I can think of.
But DBSTOP is surely one of those commands that were probably never expected to be used programmatically. Why would you be calling for a debug stop inside another function? Surely that would at least seem dangerous. So it looks like dbstop was written as if it would always be called in command form, even though in reality, the code lives inside the dbstop function itself. And it was documented as if that is the case.

Plus de réponses (0)

Catégories

En savoir plus sur Debugging and Analysis dans Help Center et File Exchange

Produits


Version

R2012b

Community Treasure Hunt

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

Start Hunting!

Translated by