RECURSION FUNCTION IN MATLAB USING ARRAY
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
SANJOY MONDAL
am 10 Feb. 2014
Bearbeitet: Azzi Abdelmalek
am 10 Feb. 2014
i have an array n of size 100 (value of different index is different). after processing got an array of size half(50). i want to use this array as input to get an array of size 25.process will proceed until size of n be 1.for example
n=[1 2 3 4 5 6 7 8 9 ...100]
n1=[1 0 3 4 0 0 0 0 9...99 0]
i want n1 as input to generate array with 25 elements using only non negative elements
1 Kommentar
Akzeptierte Antwort
Azzi Abdelmalek
am 10 Feb. 2014
n=[1 2 3 4 5 6 7 8 9 ...100];
n1=n;
while numel(n1)>1
% do
% n1=
% n=n1
end
2 Kommentare
Azzi Abdelmalek
am 10 Feb. 2014
Bearbeitet: Azzi Abdelmalek
am 10 Feb. 2014
SANJOY, accepting an answer means your problem is solved. Now If you accepted the answer by accident, please make again, your question as clear as possible. You are asking about implementing something we don't know. I gave you above one way to do it in general, just adapt it to your problem. Is something not clear with that?
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical 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!