필터 지우기
필터 지우기

How to select a specific point in a linearly spaced vector?

조회 수: 2 (최근 30일)
Alireza Babaei
Alireza Babaei 2020년 4월 21일
답변: Sriram Tadavarty 2020년 4월 21일
Dear all,
suppose that we have x defined:
clc
x = linspace(1,4,7)
what is the pertinent code to capture point: x = 2?

답변 (1개)

Sriram Tadavarty
Sriram Tadavarty 2020년 4월 21일
Hi Alireza,
You can perform find operation
find(x==2); % This value tells the index in x where the value is 2
Hope this helps,
Regards,
Sriram

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by