Apply operation to each element of an array

조회 수: 162 (최근 30일)
Adam Fitchett
Adam Fitchett 2019년 11월 15일
편집: Adam Fitchett 2019년 11월 15일
I have an array of numbers x1, x2, x3.... I want to obtain an array of numbers y1, y2, y3... such that yi = ceil((3/xi)^2). Is there a way to do this in one line of code without a for loop? I could do it with a for loop but I feel like I should be able to just apply the operation elementwise in a one line command.
Something like
Y = ciel((3/X)^2))
but of course that is not allowed

채택된 답변

Fabio Freschi
Fabio Freschi 2019년 11월 15일
편집: Fabio Freschi 2019년 11월 15일
You should use element-wise operations
In your case
Y = ceil((3./X).^2))
  댓글 수: 1
Adam Fitchett
Adam Fitchett 2019년 11월 15일
편집: Adam Fitchett 2019년 11월 15일
Thank you. I wondered about using the dot for element wise, but didn’t realise I could use it twice in the same operation like that

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

태그

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by