Can I convert a complex value vector into corresponding string?
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Shafali
el 9 de Nov. de 2016
Comentada: Shafali
el 10 de Nov. de 2016
Hey I am reading character data from a text file and converting it into numeric value for further processing. After getting numeric value I performed addition operation with a complex value. Here is the sample code: f=fopen('abc.txt','r'); %open a text file y=fscanf(f,'%s'); %read the data fclose(f); w=double(y); %convert character data to corresponding double value u=w+zne; %add a complex number I just want to convert the result (u) back to its corresponding character form which I am not getting. Please help...
0 comentarios
Respuesta aceptada
Henry Giddens
el 9 de Nov. de 2016
str = num2str(u)
https://uk.mathworks.com/help/matlab/ref/num2str.html
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Type Conversion en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!