I want to index a element of a vector after defining it
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to select the first element of a vector without having to store it in a variable. For example, if i want to know the smallest prime divider of a number, i want to write this
factor(56)(1)
However this is invalid. Any correct way to do this?
0 Kommentare
Akzeptierte Antwort
Stephen23
am 7 Okt. 2024
Verschoben: Rik
am 7 Okt. 2024
"Any correct way to do this?"
Yes, but only if you want to make your code complex, awkward, and obfuscated:
subsref(factor(56),substruct('()',{1}))
struct('x',factor(56)).x(1)
The MATLAB approach: store it in a vector. Note that how many lines you use is not an indicator of runtime efficiency.
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!