Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gdat
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SPC
gdat
Merge requests
!35
Resolve "Fix routine to plot connection matrix in TCV_IMAS routines"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Fix routine to plot connection matrix in TCV_IMAS routines"
16-fix-routine-to-plot-connection-matrix-in-tcv_imas-routines
into
master
Overview
5
Commits
1
Pipelines
5
Changes
1
Merged
Francesco Carpanese
requested to merge
16-fix-routine-to-plot-connection-matrix-in-tcv_imas-routines
into
master
5 years ago
Overview
5
Commits
1
Pipelines
5
Changes
1
Expand
Closes
#16 (closed)
Edited
5 years ago
by
Francesco Carpanese
0
0
Merge request reports
Compare
master
version 4
d1acfacd
5 years ago
version 3
5cfd6d15
5 years ago
version 2
5cfd6d15
5 years ago
version 1
d1acfacd
5 years ago
master (base)
and
latest version
latest version
f6d57526
1 commit,
5 years ago
version 4
d1acfacd
1 commit,
5 years ago
version 3
5cfd6d15
2 commits,
5 years ago
version 2
5cfd6d15
2 commits,
5 years ago
version 1
d1acfacd
1 commit,
5 years ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
matlab/TCV_IMAS/plot_connection_matrices.m
+
2
−
2
Options
@@ -28,9 +28,9 @@ for kk=1:info_pf_active.ntotcircuits
addcolor
=
'\color{green}'
;
end
xlab
{
index
}
=
[
addcolor
info_pf_active
.
supply
{
ii
}
.
name
{:}
'in'
];
xlab
{
index
}
=
[
addcolor
info_pf_active
.
supply
{
ii
}
.
name
'in'
];
index
=
index
+
1
;
xlab
{
index
}
=
[
addcolor
info_pf_active
.
supply
{
ii
}
.
name
{:}
'out'
];
xlab
{
index
}
=
[
addcolor
info_pf_active
.
supply
{
ii
}
.
name
'out'
];
end
for
ii
=
1
:
info_pf_active
.
ntotcoils
if
any
(
ii
==
info_pf_active
.
circuit
{
kk
}
.
coils_ind_belonging_to_circuit
)
@@ -43,7+43,7 @@
index
=
index
+
1
;
xlab
{
index
}
=
[
addcolor
info_pf_active
.
coil
{
ii
}
.
name
'out'
];
end
shg
axis
ij
ax
=
gca
;
Loading