plotting 2 matrices with 1 dependent variable

I have 2 matrices dependent to 1 variable like..
A1 x11 x12 x13 ... x1n A2 x21 x22 x23 ... x2n A3 x31 x32 x33 ... x2n . . An....
A1 y11 y12 y13 ... y1n A2 y21 y22 y23 ... y2n A3 y31 y32 y33 ... y2n . . An...
I want to plot y data in a contour format by dividing x data in to known bands. so that my x axis will be the variable (A) and y axis will be x bands and plotting value will be y.

Antworten (1)

Michael Haderlein
Michael Haderlein am 24 Jul. 2014

0 Stimmen

Not sure, but maybe you're looking for the reshape function?
>> reshape([1 2 3 1 2 3],3,2)
ans =
1 1
2 2
3 3

Kategorien

Mehr zu Contour Plots finden Sie in Hilfe-Center und File Exchange

Produkte

Gefragt:

am 24 Jul. 2014

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by