I don't know why MATLAB appears such a error message when debug this program,but in my friend's machine,the program can be debugged successfully.thank you!

The only error message is"??? Undefined command/function 'circle'."
clear; close all; clc; N=20; m=10; n=0:1:N-1; x=8*(0.4).^n; n1=mod((n+m),N); xm=x(n1+1); subplot(2,1,1); stem(n,x); title('original squence'); xlabel('n'); ylabel('x(n)'); subplot(2,1,2); stem(n,xm); title('circular shift squence'); xlabel('n'); ylabel('x((n+10))mod20');

 採用された回答

Sachin Ganjare
Sachin Ganjare 2012 年 10 月 17 日
Undefined command/function 'circle'."
Means that matlab cannot find function/command 'circle'.
Please check where this function is defined.
Also code which you have pasted does not refer any function named 'circle'.
Hope it helps!!

4 件のコメント

I don't not find the function definition from HELP menu.Also,I have asked my friend whose computer can be debugging the program, to get the function definition from his computer,but he said he can not gen any information from HELP menu.
Where your code .m file is located, also what is its name & are there any spaces in it?
Oh,my god!There is apace in my file's name,but in the past I had never knew that the name of M-file cannot include a space.I was so careless.Thank you very much!
But why did it work on your friend's computer? It should not have worked there either.

サインインしてコメントする。

その他の回答 (1 件)

Type
>> which -all circle
on both your computer and your friends computer. Then compare what it prints in the command window. Tell us what they both say.

1 件のコメント

Thank you very much all the same!I had found my mistake,I name the M-file with a space.In the past,I never knew that the name of M-file cannot include a space.It is ridiculous,isn't it?

サインインしてコメントする。

カテゴリ

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by