select initial and final data from the dataset
이전 댓글 표시
Suppose I have a dataset of
x=(1:1:1000);
and I want to run operation by taking the 5th digit as initial and 900th as final
x_ic=5;
x_end=900;
how to do this?
댓글 수: 1
Torsten
2022년 1월 26일
x_ic = x(5);
x_end = x(900);
답변 (1개)
Priyanka Kondapalli
2022년 2월 3일
Hi
We understand that you are trying to represnt 5th digit as the 1sst and 900th as the final. Please follow the below way
x_ic = x(5);
x_end = x(900);
카테고리
도움말 센터 및 File Exchange에서 Regression에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!