I already have a row matrix, how to change it's dimensions to 5x5 for example?
3 次查看(过去 30 天)
显示 更早的评论
So this is how it is right now. My matrix A = num(idx) is a row matrix. How can I change it's dimensions to 5x5?

2 个评论
采纳的回答
Walter Roberson
2021-4-26
It looks like you are not being asked to draw the primes between 1 and 100; it looks like you are asked to draw the first 100 primes.
num = 1:600;
idx = isprime(num);
A = num(idx);
if length(A) > 100; A = A(1:100); end
A = reshape(A, 10, 10);
imagesc(A)
colorbar
axis equal tight;
A(end)
However, there is a completely different possibility:
num = reshape(1 : 100, 10, 10);
idx = isprime(num);
imagesc(idx)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

