-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from DeepMIMO/new-data-format
DeepMIMOv3 merge
- Loading branch information
Showing
26 changed files
with
1,168 additions
and
460 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Raytracing_scenarios/* | ||
Examples/dmv3_example_html/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
% --------- DeepMIMO: A Generic Dataset for mmWave and massive MIMO ------% | ||
% Authors: Ahmed Alkhateeb, Umut Demirhan, Abdelrahman Taha | ||
% Date: March 17, 2022 | ||
% Goal: Encouraging research on ML/DL for MIMO applications and | ||
% providing a benchmarking tool for the developed algorithms | ||
% ---------------------------------------------------------------------- % | ||
|
||
function path_inclusion = antenna_FoV(theta, phi, FoV_limits) | ||
path_inclusion = ((phi <= 0+FoV_limits(1)/2) ... | ||
| (phi >= 360-FoV_limits(1)/2)) ... | ||
& ((theta <= 90+FoV_limits(2)/2) ... | ||
& (theta >= 90-FoV_limits(2)/2)); | ||
end | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.