标签: matlab
我需要找到两个具有不同频率的正弦曲线的交点。我试图利用快速和稳健的曲线交点,这让我在内存中出错。
Error using repmat Out of memory. Type HELP MEMORY for your options.
e.g。
s1 = sin(2*pi*t) s2 = sin(2*pi*220*t) [xo,yo] = intersections(t,s1,t,s2,1)