MatrixBerryCore
SortableEntity.m
Go to the documentation of this file.
1 classdef SortableEntity<mxberry.core.test.aux.CompEntity
2  methods
3  function [resVec,indVec]=sort(inpVec)
4  [resVec,indVec]=mxberry.core.sort.mergesort(inpVec);
5  end
6  function self=SortableEntity(varargin)
7  self=self@mxberry.core.test.aux.CompEntity(varargin{:});
8  end
9  end
10 end