I need to fully justified the contents of table such as RSCA ,RR1 ,RR2 etc values. Is there any way to provide values in a table that is fully justified horizontally not the Left Aligned such as we provided \begin{tabular}{|l|l|l|} which left aligned the content.
The code is shown below:
\def\arraystretch{1.3}%
\begin{table}[h]
\centering
\caption{Values of Dispersion Constant ($R$)}
\begin{tabular}{|l|l|l|}
\hline
\multicolumn{1}{|c|}{\textbf{Algorithm}} & \multicolumn{2}{ c|}{{\boldmath\textbf{Dispersion Constant ($R$)}}}\\
\hline
& \multicolumn{1}{ c|}{\textbf{M=16}} & \multicolumn{1}{ c|}{\textbf{M=32}}\\ \hline
SCA & R\textsubscript{SCA} = 123 & R\textsubscript{SCA} = 123 \\\hline
\justifying
MCMA & R\textsubscript{R} = 2.55 and R\textsubscript{I} = 2.55 & R\textsubscript{R} = 2.55 and R\textsubscript{I} = 2.55\\
\hline
\multirow{2}*{DD-MCMA} & R\textsubscript{R1} = 0.75 and R\textsubscript{R2} = 2.55 & R\textsubscript{R1} = 0.75 and R\textsubscript{R2} = 2.55 \\
& R\textsubscript{I1} = 0.75 and R\textsubscript{I2} = 2.55 & R\textsubscript{I1} = 0.75 and R\textsubscript{I2} = 2.55 \\
\hline
\end{tabular}
\end{table}
I want to make the this part of code to appear Justified Aligned Horizontally
SCA & R\textsubscript{SCA} = 123 & R\textsubscript{SCA} = 123 \\\hline
\justifying
MCMA & R\textsubscript{R} = 2.55 and R\textsubscript{I} = 2.55 &
R\textsubscript{R} = 2.55 and R\textsubscript{I} = 2.55\\
\hline
\multirow{2}*{DD-MCMA} & R\textsubscript{R1} = 0.75 and R\textsubscript{R2}
= 2.55 & R\textsubscript{R1} = 0.75 and R\textsubscript{R2} = 2.55 \\
& R\textsubscript{I1} = 0.75 and R\textsubscript{I2} = 2.55 &
R\textsubscript{I1} = 0.75 and R\textsubscript{I2} = 2.55 \\
\hline


ptype column is justified, but with a fixed width you have to specify. Where does the\justifyingmacro originate from? – Skillmon Jul 10 '18 at 06:49R\textsubscript{SCA} = 123compared to the longer equations in the other rows? And why do you insert those equations in text mode not in maths mode? – Skillmon Jul 10 '18 at 06:52