what is wrong with my function code

조회 수: 3 (최근 30일)
Mohammed Alqanber
Mohammed Alqanber 2015년 11월 6일
편집: Stephen23 2015년 11월 7일
clear all;
close all;
function out = random_rayleigh (x,y)
msg=nargchk(0,2,nargin);
error(msg);
if nargin <1
y=1;
x=1;
elseif nargin<2
y=x;
end
array1=randn(x,y);
array2=randn(x,y);
out=sqrt(array1.^2+array2.^2);
no_of_samples=1000000;
mean_noise_level=10;
Detection_threshold_dB=[5.,6.,7.,8.,9.,10.,11.,12.,13.];
threshold_in_v=mean_noise_level.*10.0.^(Detection_threshold_dB/20.);
tota_samples=mean_noise_level/1.25*random_rayleigh(1,no_of_samples);
for jj=1:length(threshold_in_v)
total(jj)=sum(total_samples>threshold_in_v(jj));
end
fprintf('the constant false alarm rate for the threshold level is:');
for jj = 1:length(threshold_in_v)
fprintf('threshold(volts)=%5.1f dB Pfa=%14.5e', Detection_threshold_dB(jj),total(jj)/no_of_samples);
end
end
  댓글 수: 1
Stephen23
Stephen23 2015년 11월 7일
편집: Stephen23 2015년 11월 7일
The Problem is called cargo-cult programming: beginners use clear all and close all, without knowing why they are doing this.
The Solution is to stop using clear all and close all at the beginning of every function, without knowing what they are actually useful for, and when they should be used.

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

답변 (1개)

Walter Roberson
Walter Roberson 2015년 11월 7일
You need to delete the lines
clear all;
close all;

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by