Post Reply 
Different behavior of ./ and .* with vectors [SOLVED]
05-02-2017, 09:11 PM (This post was last modified: 05-03-2017 06:39 PM by compsystems.)
Post: #4
RE: Different behavior of ./ and .* with vectors
the Hadamard operations (Hadamard Product .*, Hadamard Power .^, Hadamard Inverse .^-1 and Division ./ ) are Element by Element

https://en.wikipedia.org/wiki/Hadamard_p...(matrices)

the two arguments must be an array although the math kernel can expand functionality with scalars

array vs matrix(linear algebra) operations

https://www.mathworks.com/help/matlab/ma...tions.html

HP50 & HPPRIME CAS MODE
hadamard([[1,2],[3,4]],[[3,4],[5,6]]) RETURNS [[3,8],[15,24]] // OK

HP50
hadamard([1,2],[3,4]) RETURNS [3,8] // ok
hadamard([[1,2]],[[3,4]]) RETURNS [[3,8]] // ok

HPPRIME CAS MODE
hadamard([1,2],[3,4]) RETURNS 5*√5 WHY?
hadamard([[1,2]],[[3,4]]) RETURNS [[3,8]]
[1,2] .* [3,4] RETURNS [3,8]

4 ./ [2,4] -> [2,1]
[4] ./ [2,4] -> [2] /!\ Resize to a smaller size
[2,4] ./ [4] -> [1/2]

4 .* ([2,4] .^ -1) -> [2,1]

4./[2,4] -> 4.0 / [2,4] -> 4./[2,4] ?
Without spaces also should operate to each element, as some point operations are equivalent to natural operators like [+] [-] [/]
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Different behavior of ./ and .* with vectors - compsystems - 05-02-2017 09:11 PM



User(s) browsing this thread: 1 Guest(s)