How to save no variable

조회 수: 4 (최근 30일)
MIHYUN
MIHYUN 2014년 7월 14일
댓글: MIHYUN 2014년 7월 14일
This is my code.
Lat = 30;
Lon = 12;
base_url =[ 'http://maps.googleapis.com/maps/api/geocode/json'];
formatSpec = '%4.6f';
LatLon = [num2str(Lat,formatSpec),',',num2str(Lon,formatSpec)];
request_url = [base_url '?latlng=' LatLon '&sensor=true_or_false']
docNode = urlread(request_url);
data = json.load(docNode);
n = size(data.results,2);
i = 1;
for i = 1:n
a = data.results(1,i).types(1,1);
b = data.results(1,i).formatted_address;
if strcmp(a,'country') == 1
sprintf(b)
else if strcmp(a,'locality') == 1
c = b;
sprintf(c)
end
end
end
save('name.mat','b','c')
name = load('name.mat','-mat');
N = struct2cell(name);
When you run the above code , the following message will appear. Variable 'c' not found.
So, I want to save as " no data " when there is no value of c or b as the message. What should I do?

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 7월 14일
편집: Azzi Abdelmalek 2014년 7월 14일
In your test assign something to your variable c
if strcmp(a,'country')
sprintf(b)
c='no data'
elseif strcmp(a,'locality')
c = b;
sprintf(c)
end
  댓글 수: 1
MIHYUN
MIHYUN 2014년 7월 14일
Thank you for helping me. But I have a question.
If error message is ' Variable 'b' not found.', is it same code?
(That is, Whenever change the value of latitude & longitude, It may or may not be exist the value of b and c.
And the value of c does not exist naturally if there is no value of b.)

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 JSON Format에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by