table.isequaln
table: TF = isequaln (A, B)
table: TF = isequaln (A, B, …)
Test tables for equality, treating missing values as equal.
TF = isequaln (A, B) is identical to
isequal (A, B) except that missing values are
treated as equal to one another, in the same way that isequaln
treats NaN. It returns a logical scalar TF, which is
true when the tables are the same size, carry the same
variable names, row names and metadata, and each pair of corresponding
elements is either equal or missing in both, and false
otherwise.
Further tables may be supplied, as in isequaln (A,
B, C, …), in which case TF is true
only when all of them are equal to one another. Any argument that is
not a table, a timetable included, makes the result false
rather than raising an error.
Source Code: table