Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
少し修正したオイラー問題で遊んでいます。次のコード:
a=(0:1:999); b=a(mod(a,5) == 0)
正しいことをしているように見えます。ただし、わずかな変更があります。
a=(0:1:999); b=a(mod(a,5) == 0 && mod(a,3) == 0)
私は得る
b=[](0x0)
ここで何が起きてるの?