Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
136 views
in Technique[技术] by (71.8m points)

arrays - How do i replace all elements of a vector with a scalar

I have a vector (or array)

A = [2 3 4]

I want to replace all elements of each row with a scalar value of 4. I have the code:

for ii = 1: size(A, 1) A(ii,:) = 4 end

This returns A = [4 4 4]. How can i obtain a 1x1 matrix: A = [4] rather than the 1x3 matrix?

Many thanks in advance.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can replace the NxM vector/matrix/array with a scalar variable by just assigning it a scalar.

Example:

>>> A = [1,2,3]
A =
    [1 2 3]
>>> A = 4
A =
    4

If I remember right, a scalar in MATLAB is a 1x1 matrix


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...