For example, if you had:
x_vars = ["T_k", "Q", "kappa", "delta", "epsilon", "wave_theta"]
y_vars = ["R_0", "B_0", "P_F", "eta_CD", "rho_j", "f_B", "n_bar", "I_M"]
for cur_var in vcat(x_vars, y_vars)
println(cur_var)
end
Whats the most efficient way to handle the vcat
behavior as:
-
x_vars
&y_vars
become large - the list of vars becomes longer (i.e. if there were
z_vars
andw_vars
)