How to Plot variation of an output?

8 views (last 30 days)
Nataly Orozco
Nataly Orozco on 22 Sep 2020
Answered: Deepak Meena on 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.

Answers (1)

Deepak Meena
Deepak Meena on 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

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!