Feeds
提问
Write a function that finds all the Three Pythagoras less than n?
function result = checkPyth(n) y=n; for i =1:1:length(y) for j=1:1:length(y) for k=1:1:length(y) while ...
6 years 前 | 1 个回答 | 0
1
个回答提问
How do I single out elements in a vector?
If I was asked to single out the even elements in a vector say randi(100,1,100) How would I do that? If I were to just want to ...
6 years 前 | 1 个回答 | 0