An N by N by N matrix code

2 870 vues (au cours des 30 derniers jours)
dunphy
dunphy le 11 Nov 2021
Réponse apportée : DGM le 23 Sep 2025 à 19:18
How do I code for NxNxN matrix using a letter.

Réponse acceptée

KSSV
KSSV le 22 Sep 2025 à 0:00
Modifié(e) : MathWorks Support Team le 22 Sep 2025 à 14:40
text(0.5,0.5,'D','FontSize',90,'Color','k')axis offI=frame2im(getframe(gcf));iwant = imresize(I,[50 50]) ;imshow(iwant)
  4 commentaires
dunphy
dunphy le 11 Nov 2021
text(0.5,0.5,'D','FontSize',90,'Color','k')
what are these for?
Spaceman
Spaceman le 6 Mar 2024
text adds text to one point, specifying x and y as scalars. i.e. (0.5,0.5)
'D' is what appears in the image.
'Fontsize',90 specifies how large the D will be.
'Color','k' dictates the D will be black.

Connectez-vous pour commenter.

Plus de réponses (2)

Walter Roberson
Walter Roberson le 23 Sep 2025 à 4:24
N = 20; %for example
Letter = 'D'; %for example
Array3d = repmat(Letter, N, N, N);

DGM
DGM le 23 Sep 2025 à 19:18
For sake of ridiculousness:
N = double('d'); % using a letter
myarray = zeros(N,N,N); % a NxNxN array
size(myarray)
ans = 1×3
100 100 100
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
Yes, I did think about creating a volumetric image of a letter, but I'm lazy today.

Catégories

En savoir plus sur Data Type Conversion 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