Assign value in a cell with a "oneliner"

1 回表示 (過去 30 日間)
Florian Levy
Florian Levy 2019 年 8 月 9 日
コメント済み: Florian Levy 2019 年 8 月 9 日
Hello Matlab folks,
I am trying to retrieve a cell and change some of its values with only one command line.
I have today :
>> x = {'a';'b';'c';'d';'e'};
>> x{2} = 'y';x{4} = 'z';
I am looking for something like:
>> UnknownFunction({'a';'b';'c';'d';'e'},2,'x',4,'z');
And because it is not funny otherwise, I can't create an UnknownFunction.m myself as I need to use only native Matlab function.
Any Idea ?
Thanks

採用された回答

madhan ravi
madhan ravi 2019 年 8 月 9 日
[x{2},x{4}]=deal('x','z')
  4 件のコメント
madhan ravi
madhan ravi 2019 年 8 月 9 日
編集済み: madhan ravi 2019 年 8 月 9 日
Thanks dpb , I thought so too until the OP commented xd:
subsref({'a';'b';'c';'d';'e'},substruct('{}',{2}))
% or you can use the below ones if the user made anonymous function is allowed
retriever = @(x,y) x(y);
% ^_^ - use {} if you want
retriever({'a';'b';'c';'d';'e'},2)
Florian Levy
Florian Levy 2019 年 8 月 9 日
I actually just found the function that suits my need.
getcolumn({'a';'b';'c';'d';'e'}',[2 4])
Thanks.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

製品


リリース

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by