How to build the search fast?

조회 수: 3 (최근 30일)
C Zeng
C Zeng 2012년 12월 24일
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.

채택된 답변

Laura Proctor
Laura Proctor 2012년 12월 24일
편집: Laura Proctor 2012년 12월 24일
If you have the Statistics Toolbox, you could use a dataset array.
% Create a sample dataset
x = dataset({(1:10)','ZipCodes'},{rand(10,1),'Cost'})
% Find the cost value associated with the ZipCode value of 5
x.Cost(x.ZipCodes==5)
Alternatively, you could use a map container, which allows you to just look up your cost by inputting the Zip Code value:
% Create a sample map container object
mapObj = containers.Map((1:10)',rand(10,1))
% Look up the cost associated with the ZipCode value of 5
mapObj(5)
  댓글 수: 3
Laura Proctor
Laura Proctor 2012년 12월 24일
Nonconsecutive values will work for both cases. I'm assuming that you already have the values in some sort of document which you should be able to import into MATLAB with the import tool (depending on the version of MATLAB you are using) as variables and then use those variables as inputs to whichever function you choose to use.
C Zeng
C Zeng 2012년 12월 25일
You are right, I already have the data stored in Excel.

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

추가 답변 (1개)

Image Analyst
Image Analyst 2012년 12월 24일
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
Image Analyst
Image Analyst 2012년 12월 26일
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
C Zeng 2012년 12월 28일
Thanks!

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

카테고리

Help CenterFile Exchange에서 Database Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by