Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
pbdlib-matlab
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rli
pbdlib-matlab
Commits
d156ba5d
Commit
d156ba5d
authored
Jul 03, 2017
by
Sylvain CALINON
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
outerprod.m added
parent
cf8c8e33
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
m_fcts/outerprod.m
m_fcts/outerprod.m
+16
-0
No files found.
m_fcts/outerprod.m
0 → 100644
View file @
d156ba5d
function
T
=
outerprod
(
U
,
V
,
varargin
)
% Computation of the outer product between two tensors.
T
=
bsxfun
(
@
times
,
U
(:),
V
(:)
.'
);
totalSize
=
[
size
(
U
)
size
(
V
)];
for
i
=
1
:
numel
(
varargin
)
T
=
bsxfun
(
@
times
,
T
(:),
varargin
{
i
}(:)
.'
);
totalSize
=
[
totalSize
,
size
(
varargin
{
i
})];
end
totalSize
(
totalSize
==
1
)
=
[];
T
=
reshape
(
T
,
totalSize
);
end
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment