I have an array defined as such:
x0 = 6;
xmin = 7;
xmax = 20;
Ω = ConstantArray[0, {xmax, xmax}];
Do[
Do[
If[i == j + 1, Ω[[i, j]] += 1];
If[i == j, Ω[[i, j]] -= 1 - γ];
If[i == j && j >= x0 + xmin, Ω[[i, j]] -= β];
If[i >= x0 && i <= j - xmin &&
j >= x0 + xmin, Ω[[i,
j]] += β/(j - xmin - x0 + 1)];
If[i >= xmin && i <= j - x0 &&
j >= x0 + xmin, Ω[[i,
j]] += β/(j - xmin - x0 + 1)]
, {j, 1, xmax}]
, {i, 1, xmax}]
Which I then want to join to a string using an operation like row:
print = Row[{"Ω=" , MatrixForm[Ω]}];
How can I export this as a jpg of a fixed size and/or fixed DPI?