Using fit inside a loop

조회 수: 14 (최근 30일)
Jaime De La Mota Sanchis
Jaime De La Mota Sanchis 2021년 9월 14일
댓글: Jaime De La Mota Sanchis 2021년 9월 14일
I have constructed a for loop in which I save a set of XY positions and a measured windspeed field as:
for i=1:50
windX_in_the_node=U(:,:,i);
windX_in_the_node_vector=reshape(windX_in_the_node,size(mediaU,1),1);
matriz_a_enviarX_1_of_50=zeros(size(mediaU,1), 3);
matriz_a_enviarX_1_of_50(:,1:2)=positions;
matriz_a_enviarX_1_of_50(:,3)=windX_in_the_node_vector;
filenameX = sprintf('Xdata_%d_of_50', i);
save(filenameX, 'matriz_a_enviarX_1_of_50')
end
Now, I am looking for a way of also saving a fit of said data using fit. I am using the example code
sf = fit([x, y],z,'poly23')
changed as
sf = fit([positions(:,1), positions(:,2)],windX_in_the_node_vector,'poly23')
however, if I try to put it inside of the for loop simply writing sf(i) =... I get an error. Can I also automate this use of fit or do I need to do this 50 times by hand?
Best regards.
Jaime.
  댓글 수: 2
源樹 上林
源樹 上林 2021년 9월 14일
> sf(i) =... I get an error.
sf_save{i} = sf;
Jaime De La Mota Sanchis
Jaime De La Mota Sanchis 2021년 9월 14일
Thanks this works fine.

댓글을 달려면 로그인하십시오.

답변 (1개)

darova
darova 2021년 9월 14일
편집: darova 2021년 9월 14일
Try cell
sf{1} = @(x) sin(x);
sf{2} = @(x) cos(x);
x = 0:0.1:10;
plot(x,sf{1}(x),'r')
line(x,sf{2}(x))
  댓글 수: 1
Jaime De La Mota Sanchis
Jaime De La Mota Sanchis 2021년 9월 14일
Sorry. I don't understand very well what You are suggesting. However, the comment on my question works fine.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Spline Postprocessing에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by