[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Extraction of elements of an array inside the other array
From: |
GK19 |
Subject: |
Re: Extraction of elements of an array inside the other array |
Date: |
Sun, 5 Apr 2020 11:21:18 -0500 (CDT) |
a = (1,3,4,6,8,9,0,5,4,)
b = (3)
c = (4,56,7,8,5,1)
a, b,c are saved in .vec extension
for t1 =1:1:length(a)
for t2=1:1:length(b)
for t3=1:1:length(c)
period_fun(a,b,c)=time(p);
p=p+1;
end
end
end
So this code will give me the time
period fun(5,1,3) which means it will fetch
5th element of a = 8, 1st element of b = 1, 3rd element of c = 7, and the
output is time = 1.1
Now just by looking the output time 1.1 i want to extract the 5th element of
a or the 1st element of b or 3rd element of c and get that element as
output
is it possible ?
--
Sent from: https://octave.1599824.n4.nabble.com/Octave-General-f1599825.html
- Extraction of elements of an array inside the other array, GK19, 2020/04/04
- Re: Extraction of elements of an array inside the other array, Nicholas Jankowski, 2020/04/04
- Re: Extraction of elements of an array inside the other array, GK19, 2020/04/05
- Re: Extraction of elements of an array inside the other array, Francesco Potortì, 2020/04/05
- Re: Extraction of elements of an array inside the other array, GK19, 2020/04/05
- Re: Extraction of elements of an array inside the other array, Nicholas Jankowski, 2020/04/05
- Re: Extraction of elements of an array inside the other array, GK19, 2020/04/05
- Re: Extraction of elements of an array inside the other array,
GK19 <=
- Re: Extraction of elements of an array inside the other array, Thomas D. Dean, 2020/04/05