Alternative for readable but slow Table dot notation

6 ビュー (過去 30 日間)
Julien MC
Julien MC 2022 年 5 月 27 日
編集済み: Stephen23 2022 年 5 月 30 日
Hi really like how legible the dot notation is for tables in Matlab... however it is just soooo slow to access and slows all my routines down.
I was wondering if there was an alternative to this?
Basically I was bundling up sets of data such as PhyProp, NumProp, GeomProp into tables and passing those to sub-functions.
At the top of each function I would unbundle the variables I needed:
say:
a = PhyProp.a
b = PhyProp.b
c = GeomProp.c
etc...
It made the function argument lists much more conscise and the code overall was still readable as all the unbundling always happened at the top of the function.
What I would like to avoid is to have to use indices, as it means you have to remember what they are before you can write new code.
for example if I had a cell array or something I could do something similar:
a = PhyProp{1}
b = PhyProp{2}
etc... but I have to remember that a is at index 1 etc...with tables it was just so much more readable.
I'll take any advice :)
  5 件のコメント
Julien MC
Julien MC 2022 年 5 月 30 日
HI @dpb, thanks for your comment. Agree with you here, that local copies are not required. I did run the profiler on the code and 'readtable' and associated table calls are definitely hogging a lot of computation time. I was super surprised as my table is no more than 20 entries in a row, which is much less than you have.
Stephen23
Stephen23 2022 年 5 月 30 日
編集済み: Stephen23 2022 年 5 月 30 日
"Why create local copies of the same data? Just use the table variables as is."
As long as the variables are not written to, then probably no local copies are made:
A local variable is just a handle to the existing data, without the repeating the indexing operation.

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

回答 (0 件)

カテゴリ

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

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by