MATLAB: How to plot one cell of size 1* 120 v/s other cell of size 1*120

MATLABplotting

There is one cell named freq with values from
'1855.0' '1857.6' '1860.2' '1862.8' '1865.4' '1868.0' '1870.6' '1873.2' '1875.8' '1878.4' '1881.0' '1883.6' '1886.2' '1888.8' '1891.4' '1894.0' '1896.6' '1899.2' '1901.8' '1905.0'
and other cell named tx_pow with values from
'22.95' '23.10' '23.15' '23.05' '23.05' '23.01' '22.94' '22.86' '22.76' '22.82' '22.88' '22.90' '22.97' '22.92' '22.83' '22.92' '22.95' '23.02' '22.97' '23.03' '23.98' '23.96' '24.03' '24.13' '24.12' '24.12' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00' '999999.00'
How to plot frequency v/s tx_pow?

Best Answer

plot(cell2mat(freq),cell2mat(tx_pow))
Related Question