Home > Software engineering >  The string between vb and matlab?
The string between vb and matlab?

Time:10-09

Vb a character variable to matlab M file, but matlab character variable is' single quotes, and vb character variable's value is "" double quotation marks, how to solve the vb character variables to matlab available?

CodePudding user response:

Don't be A language code is modified to B language code busywork,
Also don't use A language code to directly invoke B language code base, this complicated things so easy to get wrong,
Just make A, B language code of input and output is redirected to A text file, or modify A, B language code let it through text file input and output,
Can easily make A, B coordination between the two languages,

CodePudding user response:

Set mApp=CreateObject (" Matlab Application ")
CMD="FunctionA ('" & amp; SourceFile & amp; "', '" & amp; DestFile & amp; "')
"MApp. Execute CMD
The Set of mApp=Nothing
  • Related