Writing commands in MATLAB

4 vues (au cours des 30 derniers jours)
Ondrej
Ondrej le 15 Oct 2022
Hello, I have just little question. Im used to write commands in Caps Lock all the time. Is there any chance I can allow it in Preferences window? Or in some Settings?
For example I have command rand > RAND , ans > ANS , sin > SIN , sort > SORT, who > WHO , etc etc...
I hope you get my point.

Réponses (2)

Jan
Jan le 15 Oct 2022
Modifié(e) : Jan le 15 Oct 2022
No, this will not work.
Since R2009a Matlab is case-sensitive even under Windows. You cannot call sin() using the name SIN(). But you could write a wrapper function:
function y = SIN(x)
y = sin(x);
end
But this will slow down the processing and increase the confusion level. You cannot share your code afterwards and a collaboration with others requires, that they obtain a bunch of useless functions from you.
Functions with a variable number of inputs and outputs need more code.
Avoid such clutter.
By the way, ans is not a function. It stores the last replied value of commands, which are not caught in an output. Avoid to use it in productive code, because it is too volatile. During debugging ans can be overwritten and everything, which impedes debugging is the enemy of the programmer.
  1 commentaire
Ondrej
Ondrej le 15 Oct 2022
Okay thank you :)

Connectez-vous pour commenter.


Maria Ghani
Maria Ghani le 19 Oct 2022
i need to run regression to get coeffecient between two variables x, y . my data set is daily from 1995 to 2022 . i need monthly coeffecient between two variables . what command should i need to write please anyone help. my dat afile is attached for detail information. x regress y but how i can get for every month ?
thanks in advance

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by