Effacer les filtres
Effacer les filtres

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

2 vues (au cours des 30 derniers jours)
Alireza Babaei
Alireza Babaei le 21 Avr 2020
Dear all,
suppose that we have x defined:
clc
x = linspace(1,4,7)
what is the pertinent code to capture point: x = 2?

Réponses (1)

Sriram Tadavarty
Sriram Tadavarty le 21 Avr 2020
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

Catégories

En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by