푸리에 모델 피팅에서 "."이 갖는 의미가 무엇인가요?
3 views (last 30 days)
Show older comments
위의 예시를 보던 중에 궁금증이 생겼습니다.
load enso;
f = fit(month,pressure,'fourier2')
plot(f,month,pressure)
w = f.w ...
이 예시에서 "f.w" 의 의미를 이해하기 어렵습니다.
"."이 갖는 의미가 무엇인가요?
0 Comments
Answers (1)
Angelo Yeo
on 6 Nov 2024
load enso
plot(month, pressure)
[f2,gof2] = fit(month,pressure,"fourier2")
f2 안에 있는 w라는 값에 접근하기 위해 "." 이라는 명령어를 쓰는 것입니다.
f2.w
0 Comments
See Also
Categories
Find more on 보간 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!