Assign multiple values to a cell
33 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Riccardo Tronconi
le 6 Oct 2021
Modifié(e) : Riccardo Tronconi
le 6 Oct 2021
I'm trying to assign three value stored in 2 different array to a single cell.
P=[1;2];
XY=[2,5; 4 ,6];
C represent my cell. The desired output is:
C{1,1}= [1,2,5];
C{2,1}= [2,4,6];
Is there a way to do that?
0 commentaires
Réponse acceptée
C B
le 6 Oct 2021
Modifié(e) : C B
le 6 Oct 2021
@Riccardo Tronconi Here you Go !
P=[1;2];
XY=[2,5; 4 ,6];
C= [P(:,:) XY(:,:)]
%OR
C=arrayfun(@(x) [P(x,:) XY(x,:)],P,'UniformOutput',false)
Please Click on "Accept this answer" If its fullfilled your Requirement.
C =
2×1 cell array
{[1 2 5]}
{[2 4 6]}
1 commentaire
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Matrices and Arrays dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!