푸리에 모델 피팅에서 "."이 갖는 의미가 무엇인가요?
Afficher commentaires plus anciens
위의 예시를 보던 중에 궁금증이 생겼습니다.
load enso;
f = fit(month,pressure,'fourier2')
plot(f,month,pressure)
w = f.w ...
이 예시에서 "f.w" 의 의미를 이해하기 어렵습니다.
"."이 갖는 의미가 무엇인가요?
Réponses (1)
load enso
plot(month, pressure)
[f2,gof2] = fit(month,pressure,"fourier2")
f2 안에 있는 w라는 값에 접근하기 위해 "." 이라는 명령어를 쓰는 것입니다.
f2.w
Catégories
En savoir plus sur 보간 dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!