Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
範囲に従って関数の結果をプロットしようとしています。このために、範囲を定義しました-
r = [-1:0.01:4.5]
そして、関数を説明するファイルG.mがあります-
G.m
function [y] = G(x) y=(1/4)*((x^3)-4*(x^2)+7*x); end
G全帯域で機能を検証したいr。
G
r
私はplot(r,G(r))成功せずに試しました。
plot(r,G(r))
変化する
y=(1/4)*((x^3)-4*(x^2)+7*x);
に:
y=(1/4)*((x.^3)-4*(x.^2)+7*x);
そしてplot(r,G(r))、私の友人のために働きます。