我需要使用 octave 6.3.0 制作一个包含 2 个余弦曲线的图形,它们的交点用“*”标记、 fplot 和匿名函数。到目前为止我有这个
% test1.m
close all
clear all
fN=@(x) cos(4.5*x)
fAlias=@(x) cos(3.5*x)
figure
fplot(fN, [0 pi])
grid on
hold on
fplot(fAlias, [0 pi])
绘制此图https://media.discordapp.net/attachments/541412739265069087/902258960520855582/unknown.png?width=1090&height=592 我需要用'*'符号标记交叉点,像这样https://media .discordapp.net/attachments/541412739265069087/902259113650688000/unknown.png?width=1090&height=605 我一直在寻找几个小时,我能找到的最接近我认为可以工作的是matlab的“polyxpoly”函数,但它不起作用在八度音程中:(我会非常感谢任何帮助;-;