Effacer les filtres
Effacer les filtres

how to save string values in matfile

2 vues (au cours des 30 derniers jours)
Elysi Cochin
Elysi Cochin le 20 Août 2013
how to save string values in matfile
Instead of these integer values,
label(1,1:44) = 0;
label(1,45:316) = 1;
label(1,317:362) = 0;
label(1,363:555) = 1;
label(1,556:588) = 0;
label(1,589:834) = 1;
i want to store as '0' instead of 0 and '1' instead of 1.
When i did as label(1,1:44) = {'0'};
i got error
??? The following error occurred converting from cell to double: Error using ==> double Conversion to double from cell is not possible.
How to do it. Please do reply

Réponse acceptée

Jan
Jan le 20 Août 2013
Modifié(e) : Jan le 20 Août 2013
If label is a matrix of doubles you are trying to mix types in a matrix using
label(1,1:44) = {'0'};
Instead, create a new cell array
label_str = cell( size(label) );
and then fill it:
label_str(1,1:44) = {'0'};
label_str(1,45:316} = {'1'};
.
.
.
  1 commentaire
Elysi Cochin
Elysi Cochin le 20 Août 2013
thank you so much

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Workspace Variables and MAT-Files dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by