푸리에 모델 피팅에서 "."이 갖는 의미가 무엇인가요?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
위의 예시를 보던 중에 궁금증이 생겼습니다.
load enso;
f = fit(month,pressure,'fourier2')
plot(f,month,pressure)
w = f.w ...
이 예시에서 "f.w" 의 의미를 이해하기 어렵습니다.
"."이 갖는 의미가 무엇인가요?
0 comentarios
Respuestas (1)
Angelo Yeo
el 6 de Nov. de 2024
load enso
plot(month, pressure)
[f2,gof2] = fit(month,pressure,"fourier2")
f2 안에 있는 w라는 값에 접근하기 위해 "." 이라는 명령어를 쓰는 것입니다.
f2.w
0 comentarios
Ver también
Categorías
Más información sobre 빅 데이터 처리 en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!