Writing a MATLAB script for equations
17 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Fergal Ahern
le 14 Mai 2019
Commenté : James Tursa
le 15 Mai 2019
How would I write a mathlab script to convert failure rate ( lambda) into MTBF using the formula MTBF = 1/LAMBDA. I know Lambda must be assigned a value but not sure how I would write the script.
Any help at all would be much appreciated, thank you
0 commentaires
Réponse acceptée
James Tursa
le 14 Mai 2019
Modifié(e) : James Tursa
le 14 Mai 2019
E.g., put these lines in a file with a .m extension:
lambda = input('Input a value for lambda: ');
mtbf = 1 ./ lambda;
Are you supposed to specifically write a script file, or a function file?
2 commentaires
James Tursa
le 15 Mai 2019
If you had those two lines above in a file called myscript.m, and did this at the command line:
>> myscript
Then those lines would be executed as if you typed them in manually at the command line and all variables created by the script would remain in your workspace.
A function file, on the other hand, operates in its own separate workspace. It may take inputs and provide outputs. E.g., suppose you had a file called myfunction.m with the following code
function mtbf = myfunction(lambda)
if( nargin == 0 )
lambda = input('Input a value for lambda: ');
end
mtbf = 1 ./ lambda;
return
end
Then myfunction would take an input (called lambda in the function workspace), calculate mtbf, and return mtbf to the caller. If the user called myfunction without an input, then the function would prompt the user for the lambda to use. The variables in the caller workspace do not have to be named lambda and mtbf ... they can be any valid name the user wants.
Sounds like you will be getting to functions later on ...
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Install Products dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!