help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Innerjoin in Octave


From: zutboy
Subject: Innerjoin in Octave
Date: Wed, 24 Apr 2019 21:48:23 +0200
User-agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1

Hello,

I'm not sure if this is the right way to seek help on this topic.

I want to innerjoin two tables in Octave.
In Matlab I know it's fairly easy to do this:
A = table([10;22;2;3;7],[5;4;9;6;1],[10;3;8;8;4])
B = table([6;1;1;6;8],[2;3;4;5;6])
[C,ia,ib] = innerjoin(A,B,'LeftKeys',1,'RightKeys',2)

How does one do this in Octave?
I am new to loops, so if you could help me it would be much appreciated.

Kind regards,
Scott




reply via email to

[Prev in Thread] Current Thread [Next in Thread]