fprintf for printing a matrix
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Aftab Ahmed Khan
il 5 Giu 2014
Modificato: Cedric
il 5 Giu 2014
Hi, I have a matrix name BS_channelTable of size (5,25) containg only zeros and ones. I want to print its element using a single fprintf command.
Just like if i just use the matrix name BS_channelTable in the command window.
7 Commenti
Risposta accettata
Star Strider
il 5 Giu 2014
This works:
fid = 1; % Insert true ‘fid’
BS_channelTable = randi([0 1], 5, 25); % Create data
fprintf(fid, [repmat(' %d ', 1, 25) '\n'], BS_channelTable')
2 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Operators and Elementary Operations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!