Hi all,
I want to convert a matrix like this:
Could you help?
Thanks Huy

댓글 수: 3

KL
KL 2017년 4월 27일
You've got three variables but what do you mean by the second table? What's the row name and column name?
wave_buoys
wave_buoys 2017년 4월 27일
편집: wave_buoys 2017년 4월 27일
Hi, the row is "DIRECTION" and the column is "FREQUENCY". I want to plot a matrix FREQUENCY x DIRECTION. Each (FREQUENCY, DIRECTION) has a value (ENERGY DENSITY=2nd column).
Thanks
wave_buoys
wave_buoys 2017년 4월 27일
Could you try this file and help me?
Thanks

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

 채택된 답변

Stephen23
Stephen23 2017년 4월 27일
편집: Stephen23 2017년 4월 27일

0 개 추천

Use griddata, probably something like this:
[yq,xq] = ndgrid(0:0.1:2,0:60:360);
vq = griddata(x,y,v,xq,yq);

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Interpolation에 대해 자세히 알아보기

질문:

2017년 4월 27일

댓글:

2017년 4월 27일

Community Treasure Hunt

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

Start Hunting!

Translated by