フィルターのクリア

steer and array functions did not work with my matlab

7 ビュー (過去 30 日間)
Amgad Salama
Amgad Salama 2014 年 1 月 11 日
コメント済み: Amgad Salama 2014 年 1 月 12 日
steer and array functions did not work with my matlab 7.8.0 (R2009a) when i'm trying to run this simple program
clear all clc
d=1/4; kd=2*pi*d; i = 1:5; psi = -2*kd*i/5; zi = exp(1i*psi); a = fliplr(poly(zi)); a = steer(d, a, 0); [g, ph] = array(d, a, 400); dbz(ph, g, 45, 40);
need help plz

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 1 月 11 日
steer is not a built-in function, get it from FEX http://www.mathworks.com/matlabcentral/fileexchange/19030-smart-antenna-systems-for-mobile- communications/content/Steer.m
  3 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2014 年 1 月 12 日
You can check by typing
help array
and try to find it with google by typing : array matlab
Amgad Salama
Amgad Salama 2014 年 1 月 12 日
How can I solve this problem? My MATLAB did not support both?

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

その他の回答 (1 件)

Image Analyst
Image Analyst 2014 年 1 月 11 日
I don't know how to help you because you did not tell us what "did not work" means. Did it run but just give you some result that was not what you expect? Did it partially run and then throw an error? If so, tell us what the error is. Paste all the red text that shows up in the command window. You need to give us more to work with. Don't make us guess what "did not work" meant.
What does it say when you do this on the command line:
which -all steer
If it doesn't find it, then search your all your m-files for "steer" (with the "Find Files" button) and see if any of the lines it finds is preceded by a "function" keyword, because it might be defined inside a function rather than being a separate m-file called steer.m. If you still don't find it, then you don't have it.

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by