Populate pyargs() arguments with the contents of a string cell array.

3 visualizzazioni (ultimi 30 giorni)
Hello everybody,
I'd like to know if there's a way to populate the arguments of pyargs() with the contents of an array, instead of hardcoding the values like the documents tell us.
I have this simple function I'm using for testing:
function s=my_test(varargin)
extraParams=cell(numel(varargin),2);
for i=1:numel(varargin)
str = varargin{i};
C = strsplit(str,'=');
extraParams{i,1}=C{1};
extraParams{i,2}=C{2};
end
s=extraParams;
end
If I use these inputs:
a=my_test('k1=v1','k2=v2','k3=v3')
I get:
a=
'k1' 'v1'
'k2' 'v2'
'k3' 'v3'
How can I pass these values to pyargs() like this?
pyargs('k1','v1','k2','v2','k3','v3')?
Thankful for any help you could bring :)

Risposte (2)

Walter Roberson
Walter Roberson il 22 Mag 2018
a = my_test(TheCellArray{:})
  2 Commenti
Ajpaezm
Ajpaezm il 22 Mag 2018
Ahm... my_test is the function that generates the cell array. I want to populate pyargs() with the contents of that cell array.

Accedi per commentare.


Stephen23
Stephen23 il 22 Mag 2018
Modificato: Stephen23 il 22 Mag 2018
tmp = a.';
pyargs(tmp{:})

Prodotti


Release

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by