Writing commands in MATLAB

조회 수: 4 (최근 30일)
Ondrej
Ondrej 2022년 10월 15일
답변: Maria Ghani 2022년 10월 19일
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.

답변 (2개)

Jan
Jan 2022년 10월 15일
편집: Jan 2022년 10월 15일
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
Ondrej
Ondrej 2022년 10월 15일
Okay thank you :)

댓글을 달려면 로그인하십시오.


Maria Ghani
Maria Ghani 2022년 10월 19일
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

카테고리

Help CenterFile Exchange에서 Text Files에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by