필터 지우기
필터 지우기

Anyone know how to input a string into a for loop?

조회 수: 1 (최근 30일)
Franco
Franco 2012년 9월 28일
I am trying to loop a vector of strings into a given function, but everytime it goes through the for loop, it is viewed as a whole bunch of ascii character values. Anyone have any ideas how to keep it as a string?
temp1 = ['1991/05/19 13:00:00','1991/07/19 13:00:00']
[a1 a2] = size(temp1)
for i = 1:a2
temp2 = temp1(i)
[temp3(i) temp4(i)] = SolarAzEl(temp2,30,60,0.15)
end
%This is the input type for the function [Az El] = SolarAzEl('1991/05/19 13:00:00',50,10,0)

답변 (1개)

Matt Fig
Matt Fig 2012년 9월 28일
편집: Matt Fig 2012년 9월 28일
You should use a cell array instead of a character array:
temp1 = {'1991/05/19 13:00:00','1991/07/19 13:00:00'};
temp1{1} % Notice the use of {} instead of () or []
temp1{2}
  댓글 수: 3
Matt Fig
Matt Fig 2012년 9월 28일
You did not do what I did then:
>> temp1 = {'1991/05/19 13:00:00','1991/07/19 13:00:00'};
>> [a1 a2] = size(temp1)
a1 =
1
a2 =
2
Azzi Abdelmalek
Azzi Abdelmalek 2012년 9월 28일
Franco you are using [ ] rather then { }

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

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by