Azzera filtri
Azzera filtri

Use polyfit with cell arrays

6 visualizzazioni (ultimi 30 giorni)
EldaEbrithil
EldaEbrithil il 15 Ott 2020
Commentato: Ameer Hamza il 15 Ott 2020
Hi all
i am not able to use polyfit with cell arrays; suppose we have 2 cell arrays A and B with the same number of elements and with cells of non-uniform size. It is possible to obtain the graphical trend of the data in this way:
for i=1:length(A)
figure(1);set(gcf,'Visible', 'on')
plot(A{i},B{i})
xlabel('A')
ylabel('B')
hold on
end
With the same logic I would like to apply polyfit to each curve using the code:
for i=1:length(A)
C{i}= polyfit(A{i},B{i},11);
end
but i receive the error "Unable to perform assignment because brace indexing is not supported for variables of this type."
How can i do that?
Thank you for the help
Regards

Risposta accettata

Ameer Hamza
Ameer Hamza il 15 Ott 2020
Modificato: Ameer Hamza il 15 Ott 2020
I guess you already have a variable in the base workspace named 'C'. In any case, try the following code
C = cell(size(A)); % initialize C
for i=1:length(A)
C{i}= polyfit(A{i},B{i},11);
end
  2 Commenti
EldaEbrithil
EldaEbrithil il 15 Ott 2020
Thank you very much Ameer as usual!!
Ameer Hamza
Ameer Hamza il 15 Ott 2020
I am glad to be of help!

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by