필터 지우기
필터 지우기

String class not recognized in S-function

조회 수: 1 (최근 30일)
Zoltan
Zoltan 2013년 1월 9일
I want to use an S-function in my simulink model to convert a constant integer to a string, using ASCII code also. The digits of the number will be assigned in the following way: (0-> 'A',...,9->'J') Ex.
input 123 -> S-function -> output 'BCD'. Basically, i would like the same thing as him http://www.mathworks.com/matlabcentral/answers/1804-ascii-string-with-sci-transmit
I'm using S-function builder. The code below is put in the Output pane
typedef unsigned char byte;
byte i,nr;
byte v[10];
char w[10];
char s; //sign of the input number
string Convert(u[0]); //the function which does the conversion
{
long newu = 0;
nr = 0;
s = 0;
if(u[0]<0)
s = 1;
while(u[0]!=0)
{
newu = newu * 10 + (u[0] % 10);
u[0]/=10;
nr++;
}
for(i=nr;i>=1;i--)
{
v[i]=newu %10;
newu/=10;
}
for(i=1;i<=nr;i++)
{
switch(v[i])
{
case 0: w[i]='A';
break;
case 1: w[i]='B';
break;
case 2: w[i]='C';
break;
case 3: w[i]='D';
break;
case 4: w[i]='E';
break;
case 5: w[i]='F';
break;
case 6: w[i]='G';
break;
case 7: w[i]='H';
break;
case 8: w[i]='I';
break;
case 9: w[i]='J';
break;
}
}
string Convert[0](w); // converts char array(w) into a string
return(Convert[0]);
}
In the Library pane, i include the following:
#include <string.h>, but after build, i get ''undeclared identifier `string'''
I don't know about the errors in the code(i'm sure there are many, because i have little c knowledge)

채택된 답변

Walter Roberson
Walter Roberson 2013년 1월 9일
The only type that <string.h> defines is size_t . See http://pubs.opengroup.org/onlinepubs/7908799/xsh/string.h.html
You might perhaps be thinking of C++'s <string;> . See http://www.cplusplus.com/reference/string/ but remember that is for C++ not for C.
  댓글 수: 4
Walter Roberson
Walter Roberson 2013년 1월 10일
If you use a .c extension then that would be for C language code, which does not define "string" as a datatype.
Kaustubha Govind
Kaustubha Govind 2013년 1월 10일
Zoltan: Yes, that is correct.

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

추가 답변 (0개)

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by