How to get selected value in a vector ?

조회 수: 3 (최근 30일)
Atique Barudgar
Atique Barudgar 2019년 11월 24일
편집: Walter Roberson 2019년 11월 25일
I have temperature data of about 120 days and I want to select temperature of 1,12,24,36,48,60,72,84,96,108 and 120th day, How to select it?
When I am trying by this
for x=1:12:120
it is taking for 1, 13, 25 and so on
if I take x==linspace(0,120,11)
but I dont have any value at 0 i.e 0th day dont exist, it starts frrom 1st day.
Pls Help

채택된 답변

Bryan
Bryan 2019년 11월 24일
편집: Bryan 2019년 11월 24일
for x = [1 12:12:120]

추가 답변 (1개)

Walter Roberson
Walter Roberson 2019년 11월 24일
편집: Walter Roberson 2019년 11월 25일
for x=[1,12:12:120]
More obscurely in some ways, less obscurely in others:
for x = max(1, 0:12:120)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by