how to plot this case

i've 4 changing parameters K, lam, Eta, Acc
K = [a b] string
Lam = [a1 b1] string
Acc = [90 80;70 90] numbers
Eta = [a11 b11] string
the relation is like the following
at k = a and Lam = a1, Acc = 90 occurred at Eta=b11
at k = a and Lam = b1, Acc = 80 occurred at Eta=a11
at k = b and Lam = a1, Acc = 70 occurred at Eta=a11
at k = b and Lam = b1, Acc = 90 occurred at Eta=b11
I want to plot this variables and make Eta as text on figure for each Acc

11 Comments

Doug Hull
Doug Hull on 14 Dec 2011
What would it mean to plot this. I do not understand the question.
i want to draw K, Lam, Acc and Eta on graph
Use text() to draw strings on a graph.
can you guide more how to draw these 4 variables together
Please clarify what you mean by "together". Do you want the output to look like
ba170a11
all as one string? If not, then where do you want each item positioned?
i want to make plotting as 3D for k versus lam versus Acc
and on that surface or 3d graph i want to plot relivant Eta values as text on that graph
You cannot do that. Each coordinate must be numeric, but your K and Lam coordinates are strings.
ok suppose it as numeric
K = [0.1 0.2] numbers
Lam = [0.5 0.9] numbers
Acc = [90 80;70 90] numbers
Eta = [a11 b11] string
i want to plot K vs Lam vs Acc
then on each Acc i want text with Eta value
how to make that
please help me
the relation is
at k = 0.1 and Lam = 0.5, Acc = 90 occurred at Eta=b11
at k = 0.1 and Lam = 0.9, Acc = 80 occurred at Eta=a11
at k = 0.2 and Lam = 0.5, Acc = 70 occurred at Eta=a11
at k = 0.2 and Lam = 0.9, Acc = 90 occurred at Eta=b11
Jan
Jan on 15 Dec 2011
In the original question k and a1 were specified as strings. Now they are numbers. What is b11?
I still do not have the faintest idea, what your inputs are and what kind of output you want.
i want to make 3D plot between K, Lam, Acc, they are all numbers
and on that plot i want to make text notation Eta with words"a11" ,"b11"
and the relation is
at k = 0.1 and Lam = 0.5, Acc = 90 occurred at Eta='b11'
at k = 0.1 and Lam = 0.9, Acc = 80 occurred at Eta=a'11'
at k = 0.2 and Lam = 0.5, Acc = 70 occurred at Eta='a11'
at k = 0.2 and Lam = 0.9, Acc = 90 occurred at Eta='b11'
how to make this??

Sign in to comment.

Answers (0)

Tags

Asked:

on 14 Dec 2011

Community Treasure Hunt

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

Start Hunting!