how to create lat lon matrix in matlab
Show older comments
I want to create a latitude longitude 4*4 dimension matrix of temperature from dataset where temperature is in third column
30.45 70.34 20
30.95 71.23 23
31.34 72.34 25
33.23 76.34 30
Can anybody help me how to create it?
7 Comments
Stephen23
on 4 Dec 2017
mat = [...
30.45 70.34
30.95 71.23
31.34 72.34
33.23 76.34];
Tanmoyee Bhattacharya
on 4 Dec 2017
Edited: Stephen23
on 4 Dec 2017
KL
on 4 Dec 2017
What do you mean by ...I want to arrange the third column in 4*4 dimension ...?
You only have three columns. Show us how do you expect the output to look like?
Stephen23
on 4 Dec 2017
@Tanmoyee Bhattacharya: the third column has four elements. How do you want to allocate those four elements to the sixteen elements of a 4x4 matrix?
Tanmoyee Bhattacharya
on 4 Dec 2017
KSSV
on 5 Dec 2017
Tanmoyee you are missing logic some where......what exactly you want to do?
Tanmoyee Bhattacharya
on 5 Dec 2017
Edited: Tanmoyee Bhattacharya
on 5 Dec 2017
Answers (0)
Categories
Find more on MATLAB 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!