필터 지우기
필터 지우기

Plotting current vs time

조회 수: 7 (최근 30일)
Sachin Shridhar Bhat
Sachin Shridhar Bhat 2019년 9월 13일
댓글: Sachin Shridhar Bhat 2019년 9월 13일
Ivst.PNG
hello,
I have a sezt of current vs time values which I need to plot exponentially. I mean the range of vales from 5 to 300 amps.
Please let me know how to go about.

답변 (1개)

madhan ravi
madhan ravi 2019년 9월 13일
help plot
help exp
  댓글 수: 1
Sachin Shridhar Bhat
Sachin Shridhar Bhat 2019년 9월 13일
clc;
clear all;
x = 0:0.001:2;
A = 2.126;
B = 0.99;
y = A*exp(B*x);
plot(x,y)
This is what I tried.
My idea in this was converting it into an exponential function by finding A and B values. But I am not getting the plot in the way which I require

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by