Not enough input arguments.

5 visualizaciones (últimos 30 días)
Haya Ali
Haya Ali el 26 de Mzo. de 2022
Comentada: Haya Ali el 26 de Mzo. de 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);

Respuesta aceptada

VBBV
VBBV el 26 de Mzo. de 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])

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by