Writing commands in MATLAB
3 views (last 30 days)
Show older comments
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.
0 Comments
Answers (2)
Jan
on 15 Oct 2022
Edited: Jan
on 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.
Maria Ghani
on 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
0 Comments
See Also
Categories
Find more on Line Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!