0
votes
1answer
27 views

How to add marker to matlab colorbar?

I want to add a tarker/special tick mark by specific values in my matlab colorbars. For example, lets say I have a colorbar scale from -20 to 60 and my critical value is 37.53, how can I add a marker ...
5
votes
2answers
172 views

Can someone explain how to graph this sum in MATLAB using contourf?

I'm going to start off by stating that, yes, this is homework (my first homework question on stackoverflow!). But I don't want you to solve it for me, I just want some guidance! The equation in ...
1
vote
2answers
463 views

SciLab Plotting

How would you plot these in SciLab or MatLab? I am new to these and have no idea how the software works. Please help. $Plot following functions with different colors in Scilab or MatLab – f2(x) = ...
5
votes
2answers
693 views

matlab: putting a circled number onto a graph

I want to put a circled number on a graph as a marker near (but not on) a point. Sounds easy, but I also want to be invariant of zoom/aspect ratio changes. Because of this invariant, I can't draw a ...
0
votes
1answer
3k views

How can I ask matlab to give me the value of y if I input the value of x?

I already have my xy graph using the line graph. What troubles me is how can I ask matlab to give me the value of y if I give the value of x. That is, the corresponding value of y when I give x in the ...
3
votes
2answers
4k views

Using errorbar() with semilogy() in MATLAB?

I'd like to plot data x & y with errorbars, ebar, and its fit, yfitted, on a semilog plot. This doesn't seem to work: figure; hold on; errorbar(x,y,ebar); semilogy(x,yfitted); Instead of ...
2
votes
2answers
1k views

Color specifiy area of background of graph depending on condition

I have a bargraph (2D) and I want to make the background red for parts where another vector has a value > 1 i.e. example: graph = [2 3 5 4 9 1 7] color = [0 2 2 1 0 1 2] so the barplot will show ...