Help calling my basic function

조회 수: 1 (최근 30일)
Michael Vaughan
Michael Vaughan 2020년 9월 24일
답변: Steven Lord 2020년 9월 24일
So I wrote the following in a script coding window:
function [n] = n(x)
syms q
[n]=(q^(x/2)-q^(-x/2))/(q^(1/2)-q^(-1/2));
end
however I named the file QuantumInteger.m
When i type n(7) into the command window it says that the function is not defined.. but when i type QuantumInteger(7) it does work.
I would prefer the file name to be QuantumInteger.m but to be able to call the function just by typing n(5)
How do I do this? Thanks

답변 (2개)

Steve Eddins
Steve Eddins 2020년 9월 24일
You must use the filename as the function name when calling your function. MATLAB will not pay attention to the "n" inside the file.
If, in your calling code, you would like to use n(7) as "shorthand" for calling your QuantumInteger function, you can make n an anonymous function:
n = @(x) QuantumInteger(x);
n(7)
ans =
(1/q^(7/2) - q^(7/2))/(1/q^(1/2) - q^(1/2))

Steven Lord
Steven Lord 2020년 9월 24일
That is the correct and documented behavior. See the first Note on this documentation page.
You could do this by either creating an n.m file that simply calls QuantumInteger:
function y = n(x)
y = QuantumInteger(x);
end
or by defining a function handle:
n = @QuantumInteger;

카테고리

Help CenterFile Exchange에서 Function Creation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by