对于这个题,V越大,除出来的数就越小,V越小,除出来的数就越大,当我们找一个最大和最小值的时候,就可以通过这个性质进行二分来求解。
可以通过求满足 [ A V ] [\frac{A}{V}] [VA] 小于等于 B B B的最小的…
Review:
introduce the micro input device system(MIDS)
• The calibration and testing has been covered
• The introduction to filters with the example called Butterworth filter and the maths have been also demonstrated.
…
function [m] mserial_generator(tap_set)
% m序列产生器
% 输出为m序列,未进行极性变换。
L 2^(length(tap_set)-1)-1;
x [zeros(1,(length(tap_set)-2)) 1];
for i 1:1:Lm(i)x(end);for j 1:1:length(tap_set)-1sum_vector(j)tap_set(j1)*x(j);endsum_x mod…
NUMA
1 什么是NUMA
早期的计算机,内存控制器还没有整合进 CPU,所有的内存访问都需要经过北桥芯片来完成。如下图所示,CPU 通过前端总线(FSB,Front Side Bus)连接到北桥芯片,然后北桥芯片连接到…