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년 전 | 답변 수: 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년 전 | 답변 수: 1 | 0