X ortacha = x ortacha / x




Download 1,23 Mb.
Sana20.05.2024
Hajmi1,23 Mb.
#244624
Bog'liq
2amaliyishsignal


O‘ZBEKISTON RESPUBLIKASI RAQAMLI TEXNOLOGIYALAR VAZIRLIGI MUHAMMAD AL-XORAZMIY NOMIDAGI
TOSHKENT AXBOROT TEXNOLOGIYALARI UNIVERSITETI

Kompyuter injiniringi fakulteti


Sun’iy intellekt kafedrasi
Tizimlar va signallar fanidan
2-TOPSHIRIQ
Mavzu: 3-4- amaliy mashg‘ulotlar yuzasidan Natijaviy signallar, diskret cosinus koeffisenti (DCT) jarayonlarini o‘rganish
Bajardi: 040-21-guruh talabasi
Komilov Ilhomjon
Tekshirdi: Mo’minov Elyor
Baho:_____
TOSHKENT 2024








public class SecondPdf {
public static void main(String[] args) {
int[] x = {2,5,7,8,9};
int[] y = {1,3,5,7,10};
double x_ortacha = 0, y_ortacha = 0;
for (int i = 0; i < x.length; i++) {
x_ortacha += x[i];
y_ortacha += y[i];
}
x_ortacha = x_ortacha / x.length;
y_ortacha = y_ortacha / y.length;
for (int i = 0; i < x.length; i++) {
System.out.println(((x[i] - x_ortacha) * (y[i] - y_ortacha)) / Math.sqrt(Math.pow((x[i] - x_ortacha), 2) * Math.pow((y[i] - y_ortacha), 2)));
}
}
}
Download 1,23 Mb.




Download 1,23 Mb.