I am unable to display my answers on command window

조회 수: 1 (최근 30일)
Eiman Rana
Eiman Rana 2021년 9월 19일
편집: Stephen23 2021년 9월 19일
% Question 1:
a = [3 6 1 9; 6 5 3 7; 7 3 2 6];
disp(a);
% (a)
j = a(1,2);
disp(j);
if i use disp(a) it doesnt show my answer like this:
a =
3 6 1 9
6 5 3 7
7 3 2 6

답변 (1개)

Stephen23
Stephen23 2021년 9월 19일
편집: Stephen23 2021년 9월 19일
a = [3 6 1 9; 6 5 3 7; 7 3 2 6];
display(a)
a = 3×4
3 6 1 9 6 5 3 7 7 3 2 6

카테고리

Help CenterFile Exchange에서 Timing and presenting 2D and 3D stimuli에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by