Repmat converts '' to []

3 vues (au cours des 30 derniers jours)
Aditya Jain
Aditya Jain le 30 Oct 2015
Commenté : Aditya Jain le 11 Nov 2015
I want to create an array of structs
I am using the following code
structElement = struct('a', '', 'b', '', 'c', []);
ans = repmat(structElement, [4,1]);
The problem is that repmat converts '' to []
I want it to be ''
Is there a better way to do this?
  1 commentaire
Aditya Jain
Aditya Jain le 30 Oct 2015
This happens only when I see it in Workspace Browser/ Viewer by double clicking a. Doesn't happen if I do ans(1,1).a
So probably a bug in Workspace browser?

Connectez-vous pour commenter.

Réponse acceptée

Nitin Khola
Nitin Khola le 3 Nov 2015
Thanks for bringing this to the fore. At this instance, this appears to be an issue with the variable editor and not "repmat". You have mentioned that in the comment and it can also be illustrated by:
>> structElement = struct('a', '', 'b', '', 'c', []);
>> RepSt = repmat(structElement, [4,1]);
>> ischar(RepSt(1,1).a)
ans =
1
>> ischar(RepSt(1,1).c)
ans =
0
I was able to reproduce this issue. I will add it to our records. On a side note, I would like to request you to not use "ans" as a variable. Using the reserved keywords as variable and function names should be avoided.
  1 commentaire
Aditya Jain
Aditya Jain le 11 Nov 2015
was just using that to reproduce the issue. Thanks for the tip :)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Structures dans Help Center et File Exchange

Tags

Aucun tag saisi pour le moment.

Community Treasure Hunt

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

Start Hunting!

Translated by