convert column to matrix

2 views (last 30 days)
wave_buoys
wave_buoys on 27 Apr 2017
Commented: wave_buoys on 27 Apr 2017
Hi all,
I want to convert a matrix like this:
Could you help?
Thanks Huy
  3 Comments
wave_buoys
wave_buoys on 27 Apr 2017
Edited: wave_buoys on 27 Apr 2017
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 on 27 Apr 2017
Could you try this file and help me?
Thanks

Sign in to comment.

Accepted Answer

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

More Answers (0)

Categories

Find more on Matrices and Arrays 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!