How to print numbers 1 to 4 and add all numbers to a one array?

조회 수: 11 (최근 30일)
Tensi Heshan
Tensi Heshan 2021년 8월 23일
댓글: Tensi Heshan 2021년 8월 24일
results
1
2
3
4
a= [1 2 3 4];
  댓글 수: 2
Awais Saeed
Awais Saeed 2021년 8월 23일
It is a very basic task. Did you try google search?
Tensi Heshan
Tensi Heshan 2021년 8월 23일
yes I did. Here 1 2 3 4 are taken from loop and all the values (elements) are assigned to a variable "a".
I can don separately but I could not do it together.

댓글을 달려면 로그인하십시오.

채택된 답변

Awais Saeed
Awais Saeed 2021년 8월 23일
Perhaps this is what you want
for col =1:1:4
disp(col)
a(col) = col;
end
disp(['a = ',num2str(a)])
  댓글 수: 6
Awais Saeed
Awais Saeed 2021년 8월 24일
Because you are not storing anything. I am assuming you want to store 'q' values
f = -6:0.001:6;
n = -6:6;
xt = (-2<=n & n<=2);
output = [];
for t = -6:0.001:6
fun = @(f)exp(j.*2.*pi.*f.*t);
q = integral(@(f) fun(f),-2,2);
output = [output q]; % store q values
end
Tensi Heshan
Tensi Heshan 2021년 8월 24일
Right I got the point now, if so i want to assign to a empty array. Thank you for helping me..

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

KSSV
KSSV 2021년 8월 23일
Read about fprintf and sum.
  댓글 수: 2
Wan Ji
Wan Ji 2021년 8월 23일
Hi, Keep careful, KSSV
add all numbers to a one array
Tensi Heshan
Tensi Heshan 2021년 8월 23일
No, I want to use for loop and array indexing to the given values of for loop.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by