Randomly samplying a matrix
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Im currently modifying an algorithm which randomly samples a given matrix by
% Omega - set of observed entries. Should be linearly indexed.
%
% A - data vector of the form M(Omega)
[m,n] = size(M);
I = randi([0 1],m,n);
Omega = find(I);
A = M(Omega);
I wonder is it possible to replace the omega by a mask image which is made of text intead of randomly generating it.
2 commentaires
KSSV
le 8 Juil 2020
Omega in the above line of codes is a inde, it should be logical/ double. How you can take a text?
Réponses (0)
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices 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!
