Invalid use of operator "

조회 수: 2 (최근 30일)
Scott Milliken
Scott Milliken 2020년 2월 27일
댓글: Scott Milliken 2020년 2월 28일
I was trying follow and replicate the example code for the Temperature/Humidity Matlab and continue to get the error as follows:
Error in /users/mss.system.Z1My17/Temperature Humidity Line:14 Column:5
In the line is the following:
13 thingSpeakWrite(writeChId, [temp, humidity, dewPointF], "Fields", [1,2,3]...
14 "TimeStamps", time, "Writekey", writeKey)
  댓글 수: 2
Scott Milliken
Scott Milliken 2020년 2월 27일
편집: Scott Milliken 2020년 2월 27일
does not seem to matter whether it is a single or a double. The error is shorter if it is the double vs the single.
KALYAN ACHARJYA
KALYAN ACHARJYA 2020년 2월 27일
yes

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

채택된 답변

Walter Roberson
Walter Roberson 2020년 2월 27일
편집: Walter Roberson 2020년 2월 27일
The ... ends the line immediately. There is no implied separator inserted. So you have a ] from the numeric list followed by the content of the second line which is some spaces and then the literal, exactly as if you had written the numeric list and then some spaces and then the string.
[1,2,3] "TimeStamps"
all as one parameter. Numeric list followed by string is not valid syntax in this context. You need to add the missing comma.
  댓글 수: 5
Scott Milliken
Scott Milliken 2020년 2월 27일
편집: Scott Milliken 2020년 2월 27일
@Stephen, Thanks for the circle. I apologize as I didn't see the comma and at first I had 4 periods in there, then tried the comma at the end of the line. Tired eyes do that to me everytime.
@Walter, I just want it to run properly. It seems to run somewhat, there are still errors. The code lists numerous dew points, but then advises there is an error using Temperature Humidity line 13. Then it states to ensure the proper channel ID and Write key API are being used. From what I cans they are the proper ID and Key. Can't copy/paste into the code box. On the page I'm using there is no Code button to click on.
Scott Milliken
Scott Milliken 2020년 2월 28일
Thanks all for the help. Not sure what I did but all is now working.
Thanks

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

추가 답변 (0개)

커뮤니티

더 많은 답변 보기:  ThingSpeak 커뮤니티

카테고리

Help CenterFile Exchange에서 Read Data from Channel에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by