How to build the search fast?
Show older comments
Hi I have a database with cost assigned to over 500 zipcodes, that is, one zipcode has a corresponding cost. I want to build a function in matlab, that each time I have a zipcode it will return the cost. Is there a way to do it efficiently?
I have a plan to build a matrix, each row has a zipcode and a cost. I can input it but when I find it I need to go over all zipcodes to find the cost. Zipcodes are not consecutive by the way.
Thanks.
Accepted Answer
More Answers (1)
Image Analyst
on 24 Dec 2012
Why not just have a simple 500 by 2 numerical matrix to store the zip codes and the costs? Say you call it "zipCodeLookUpTable". Each row lists the zip code (in the first column) and the cost (in the second column). Then if you want to find the cost of a zip code, say it's called thisZipCode, find the row by looking in the first column, and then get the cost from the second column:
% Get the row where this zip code is located.
row = find(zipCodeLookUpTable(:,1) == thisZipCode);
% Get cost for this zip code.
cost = zipCodeLookUpTable(row, 2);
5 Comments
C Zeng
on 25 Dec 2012
Image Analyst
on 25 Dec 2012
Yes. Did you look up Excel in the help? You would have found the function xlsread() mentioned.
C Zeng
on 25 Dec 2012
Image Analyst
on 26 Dec 2012
save() will save MATLAB data out to a disk file in a proprietary MATLAB format .mat file. It will not import data in an Excel file into MATLAB.
C Zeng
on 28 Dec 2012
Categories
Find more on Data Import from 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!