I get RFM
square matrix size(64*64)
as function of x
and h
variable shown below. x = input signal consisting of(pX2),where p
can be of any size and h = threshold value (1X1) for each RFM
matrix respectively. x
is same constant values for all varying h
. let's say for example h will be in this range,h = [0:0.2:1]
RFM = function(x,h)
x=rand(100X2)
andh_1 = 0
then i will getRFM_1
of (64X64) matrix.x is same, x=rand(100X2)
andh_2 = 0.3
then i will getRFM_2
of (64X64) matrix.x is same, x=rand(100X2)
andh_3=0.6
then i will getRFM_2
of (64X64) matrix
As of now i have plotted RFM_1
in pcolor plot and also for each RFM
value i have plotted with pcolor
plot.
I want the 3d plot for the RFM matrix in pcolor
style with varying function of the h
in Z-axis. It should look for each RFM
matrix plot is stacked one above the other? How can i do this in MATLAB?
Expected output plot should somewhat look like below. Here,only one RFM_1
with h_1
matrix is plotted in this figure. I expect RFM_2
matrix at h_2=0.5
and so on plotted each withpcolor
style.
I have shared the required code here. You can use test.m
file to check the above function. https://drive.google.com/folderview?id=0B0sYDrkkEHQ-b25GMlphUEFRcDA&usp=sharing