フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Accessing elements of built in primes function

2 ビュー (過去 30 日間)
Aleem Andrew
Aleem Andrew 2020 年 11 月 11 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
How can the a particular prime of the primes function, which returns a double, be accessed?
primes(15)
class(primes(15))

回答 (1 件)

James Tursa
James Tursa 2020 年 11 月 11 日
p = primes(15);
p(1) is the first element
p(2) is the second element
etc.

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by