필터 지우기
필터 지우기

How do I use single precision numbers in a summation? My result is not coming out as expected.

조회 수: 3 (최근 30일)
So this is the question I havve. However, when I change all the numeric values to single precision, it does not make a difference in the output. Any idea what I am doing wrong?
any suggestions would be appreciated!

채택된 답변

Walter Roberson
Walter Roberson 2023년 9월 25일
You are not doing repeated addition. Repeated addition is not the same as multiplication.
Also, a and b are scalar, so a*b is a scalar, and there is no point in sum() of a scalar.
Hint: see repelem and repmat
  댓글 수: 4
Walter Roberson
Walter Roberson 2023년 9월 25일
Another hint:
P*ones(1,Q)
is one way to construct a vector of size 1 x Q that contains all P
Elaina
Elaina 2023년 9월 25일
Ok, I had tried creating am array earlier but I obviously did not do it correctly. I used repmat and that fixed it. Thank you!

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by