Can you explain ?

조회 수: 1 (최근 30일)
Srtm
Srtm 2022년 6월 30일
댓글: Rik 2023년 1월 19일
Could you please explain this line to me
a=min(b):0.001:max(c);
  댓글 수: 1
Rik
Rik 2023년 1월 19일
I recovered the removed content from the Google cache (something which anyone can do). Editing away (part of) your question is very rude. Someone spent time reading your question, understanding your issue, figuring out the solution, and writing an answer. Now you repay that kindness by ensuring that the next person with a similar question can't benefit from this answer.

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

채택된 답변

KSSV
KSSV 2022년 6월 30일
Thats is simple....
min(b)--> this takes minimum value from b
max(c)--> this picks maximum from c
a:b--> this will gnerate numbers between a and b with a difference of 1.
a:dx:b----> this will generate numbers between a and b with a difference given dx.
% EXample
a = 0 ;
b = 1;
dx = 0.1 ;
x = a:dx:b
x = 1×11
0 0.1000 0.2000 0.3000 0.4000 0.5000 0.6000 0.7000 0.8000 0.9000 1.0000
length(x)
ans = 11
diff(x)
ans = 1×10
0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000
  댓글 수: 2
Srtm
Srtm 2022년 6월 30일
can you explain this?
n=size(data,1);
for i=1:n
a_trn(2*i-1)=b(i);
a_trn(2*i)=b(i);
end
Steven Lord
Steven Lord 2022년 6월 30일
I'm guessing from these questions that you're fairly new to MATLAB. Am I correct? If so I suggest you start with the free MATLAB Onramp tutorial to quickly learn the essentials of MATLAB. After completing that tutorial the code segments you've posted should make more sense.

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

추가 답변 (0개)

카테고리

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

태그

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by