How to detect the 'end' directive in subsref?

7 ビュー (過去 30 日間)
Alex Kashuba
Alex Kashuba 2020 年 1 月 30 日
コメント済み: Alex Kashuba 2020 年 1 月 30 日
Hi all!
I am trying to reimplement the indexing of the object. Let us take as an example this primitive class that return the substript
classdef buffer
function value = subsref(obj, S)
value = S(1).subs{1};
end
end
Let's create object
buf=buffer()
Then buf(7) returns 7. buf(3:7) returns [3 4 5 6 7]. All good so far. Then buf(:) returns char ':'. Ok, can process that. Now comes the funny part:
buf(end) returns 1
buf(end+1) returns 2
buf(1:end) returns 1
buf(2:end) returns []
Question: is there a workaround so that 'end' is not always equivalent of 1, but I would be able to add my own implementation?

採用された回答

Steven Lord
Steven Lord 2020 年 1 月 30 日
Overload the end method for your class as described on this documentation page.
The reason end was always taking the value 1 is probably because your object is a scalar (size [1 1]) that internally contains an array. Consider overloading size to return the size of that internal array if appropriate.
  1 件のコメント
Alex Kashuba
Alex Kashuba 2020 年 1 月 30 日
Yep, precisely what I needed, thanks!
P.S. No, overloading 'size' won't work for me, I'm making a fifo with random access, so internal array will partially empty, and I will have to implement the indexing separately. But overloading 'end' should do. Thanks!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by