Problem 1924. Create a two dimensional zero matrix

You have to create a zero matrix of size (mxn) whose inputs are m and n and the elements of your matrix should be zeros.

Example:

If input is m=2 and n=3 then

 A = [ 0 0 0
       0 0 0 ]

Solution Stats

81.0% Correct | 19.0% Incorrect
Last Solution submitted on Mar 16, 2025

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers498

Suggested Problems

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!