creating array with entries as numbers
조회 수: 3 (최근 30일)
이전 댓글 표시
i want to create an array indexing i=1:10
such that n{i}=1.44:1.45
so it must display n1=1.44
n2=1.441
.
.
n10=1.45
n=[n1 n2 n3 n4.....n10]
please help with this
댓글 수: 1
답변 (1개)
Alex Mcaulley
2020년 2월 24일
Do you mean this?
n = 1.44:0.001:1.45;
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!