How to Plot variation of an output?

8 visualizaciones (últimos 30 días)
Nataly Orozco
Nataly Orozco el 22 de Sept. de 2020
Respondida: Deepak Meena el 25 de Sept. de 2020
I am trying to plot a graph that will give me a different value for every x from 1-100 from an equation, but I don't use matlab so I am not sur ehow to do so or where to begin. I was thinking of using a loop to extract those one hundred value pairs, but idk how to plot them all in a graph. I will attach the homeowkr problem I am dealing with so you can get an idea of what I am being asked of.

Respuestas (1)

Deepak Meena
Deepak Meena el 25 de Sept. de 2020
Hi Nataly,
Follow the steps below :
x = [ 1 : 1:100];%creating a array from 1 to 100 with step of 1
Cps = 1.2;%defining constants
Cdc = 1.5;
Vout = Cps*log(x) + Cdc;%by default log in matlab calculate w.r.t to base e and when function is
%applied to array it get applied to each element.
plot(x,Vout); %plotting the distance on X axis and VOut on Y axis

Categorías

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

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by