কার্টেসিয়ান স্থানাংকগুলিকে এলোমেলো বিন্দুর ।
সুতরাং, ব্যাসার্ধ, ,এরপিডিএফদ্বারাহিসাবে অভিন্নভাবে বিতরণ করা হয়নি।
তবুও আমি আশা করব প্রায় অভিন্ন হতে, প্রান্তে 4 টি বাম ওভারের কারণে শিল্পকর্মগুলি বাদ দিয়ে:
নীচে θ এবং ρ এর গ্রাফিকালি গণিত সম্ভাবনা ঘনত্ব ফাংশন রয়েছে :
এখন আমি যদি কে বিতরণ করতে পারি এক্স তবে অভিন্নরূপে বন্টিত বলে মনে হচ্ছে:
কেন অভিন্ন যখন নয় ( এক্স , Y ) ~ ইউ ( - 10 , 10 ) × ইউ ( - 10 , 10 ) এবং অভিন্ন যখন এক্স , Y ~ এন ( 0 , 20 2 ) × এন ( 0 , 20 2 ) ?
আমি যে মাতলাব কোডটি ব্যবহার করেছি:
number_of_points = 100000;
rng('shuffle')
a = -10;
b = 10;
r = (b-a).*randn(2,number_of_points);
r = reshape(r, [2,number_of_points]);
I = eye(2);
e1 = I(:,1); e2 = I(:,2);
theta = inf*ones(1,number_of_points);
rho = inf*ones(1,number_of_points);
for i=1:length(r(1,:))
x = r(:,i);
[theta(i),rho(i)] = cart2pol(x(1),x(2));
end
figure
M=3;N=1; bins = 360;
subplot(M,N,1);
histogram(rad2deg(theta), bins)
title('Polar angle coordinate p.d.f');
subplot(M,N,2);
histogram(rho, bins);
title('Polar radius coordinate p.d.f');
subplot(M,N,3);
histogram(r(:));
title('The x-y cooridnates distrbution (p.d.f)');
তৃতীয় লাইন প্রতিস্থাপন: এর r = (b-a).*randn(2,number_of_points);
সাথে ( x , y ) এরr = (b-a).*randn(2,number_of_points) +a ;
বন্টন স্বাভাবিক থেকে অভিন্নতে পরিবর্তন করা হবে ।