Clear Filters
Clear Filters

my H.W question

1 view (last 30 days)
mohamed
mohamed on 4 Dec 2013
Commented: Matt J on 5 Dec 2013
hi please i cant solve this problem
Generate a matrix that each element is a function of its number of row and number of column as follow A (i ,j) = i^3 + j^3 .

Accepted Answer

Matt J
Matt J on 4 Dec 2013
doc ndgrid
doc bsxfun
  4 Comments
mohamed
mohamed on 4 Dec 2013
is is a H.W question and so far i i dont understand it
Matt J
Matt J on 5 Dec 2013
Do you understand why the following produces the output that it does? If so, you should think about how modifying it could help you.
>> bsxfun(@plus,[20 30 40 50].',[1 2 3])
ans =
21 22 23
31 32 33
41 42 43
51 52 53

Sign in to comment.

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!