How to Plot variation of an output?

6 Ansichten (letzte 30 Tage)
Nataly Orozco
Nataly Orozco am 22 Sep. 2020
Beantwortet: Deepak Meena am 25 Sep. 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.

Antworten (1)

Deepak Meena
Deepak Meena am 25 Sep. 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

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by