why step size is divided by 50?

조회 수: 3 (최근 30일)
sk karimulla
sk karimulla 2018년 3월 9일
댓글: sk karimulla 2018년 8월 26일
step size = (Tmax-Tmin)/50
my question is why it should divided by 50?
  댓글 수: 4
sk karimulla
sk karimulla 2018년 3월 9일
It is formula for step size,step size is used to solve the simulink model.step size = (Tmax-Tmin)/50, in this formula why 50 is taken to calculate the step size.
Rik
Rik 2018년 3월 9일
Without more specific context of your system it is still impossible to give you a more meaningful answer. Apparently the units that Tmin and Tmax are in are 50 times larger than the step size of the model, or there should be 50 steps, or any other reason.

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

채택된 답변

Abraham Boayue
Abraham Boayue 2018년 3월 9일
편집: Rik 2018년 8월 25일
HI SK, Let say you have a function f (t) and you want to plot it between t = Tmin and Tmax, in matlab, you have to choose a step size to do so. The step size is defined as delta = (Tmax-Tmin)/(N-1), This is exactly what the function linspace does. The following are equivalent :
N = 51;
stepsize = (Tmax-Tmin)/50;
t = Tmin:stepsize:Tmax;
t = linspace (Tmin, Tmax, 50);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 String에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by