Not enough input arguments.

2 visualizzazioni (ultimi 30 giorni)
Haya Ali
Haya Ali il 26 Mar 2022
Commentato: Haya Ali il 26 Mar 2022
I want to build a graph of this equation
where phi0=pi/3. and it's graph is like
but I am getting an error " not enough input arguments'. Please help me to resolve the error. Below is my code
clear all; close all; clc;
phi=0.9*pi;
phi0=pi/3;
PHI=0:2*pi;
%%PRC Type-1:
z=[1-cos*(phi)]*exp*{3*[cos*(phi-phi0)-1]};
% Plot the signal versus time:
figure;
plot(PHI,z);

Risposta accettata

VBBV
VBBV il 26 Mar 2022
clear all; close all; clc;
% phi=0.9*pi;
phi0=pi/3;
phi=0:0.1:2*pi;
%%PRC Type-1:
z=(1-cos(phi)).*exp(3*(cos(phi-phi0)-1));
% Plot the signal versus time:
figure;
plot(phi,z);
axis([0 2*pi -0.5 0.8])

Più risposte (0)

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by