error variable a - basic
조회 수: 6 (최근 30일)
이전 댓글 표시
Why it gives me error when I type >> a= instead of giving me the following result >> a =
1
Before doing this, I had already type the following >>a=1
댓글 수: 0
채택된 답변
Ameer Hamza
2020년 9월 30일
편집: Ameer Hamza
2020년 9월 30일
Don't type
a =
Just type
a
in command window.
For example,
>> a = 1;
>> a
a =
1
추가 답변 (1개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!