How to plot the following in matlab

1 view (last 30 days)
1)y = ce^-2x
2)I = I e^(-RT/L)
3)y = cx^(3/2)
4)y = sin2x + c/(sin^(2) 2x ) , c = 1

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 17 Nov 2012
Edited: Azzi Abdelmalek on 17 Nov 2012
e.g
x=0:0.1:10
y=(x.^2+sin(x))./(x+1); % .*, .^, ./ are operations element by element
plot(x,y)
help plot
  1 Comment
fahad
fahad on 17 Nov 2012
please tell me the procedure about all the question i am totally unaware of matlab i will be thankful to you have to submit these question

Sign in to comment.

More Answers (0)

Categories

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

Tags

Products

Community Treasure Hunt

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

Start Hunting!