I have plotted the response of a Filter using "freqs()". Now, I want to highlight the points on the plot corresponding to Y=0.1 and Y=0.1. Please suggest me how to do it. Any help will be greatly appreciated.
But if you really want to have more control over the graphs, you should use a graph plotting software such as Origin. They produce amazing visualizations.
Niloy Sikder , Md Sazal Miah , Jinfeng Li I have attached the graph. Now, I just want to Mark/highlight the point on the curve corresponding to Y=0.7 and Y=0.1. Now please help me exactly what do I have to do.
Niloy Sikder Thnx a lot for this video. It helped me to determine those required points. But, now I need to do this completely by Coding only, so that directly this points get highlighted on executing.
Possibly you want this : first figure. Then use the code below. If both x and y values are available then simply use plot(x,y). But here only y values are available, corresponding x values need to be determined. Since there is no equation, y values cannot be used to solve for x. Therefore, use a loop to identify the x-axis values (w) around a specified y value, say y = 1. Use a large number of frequency values (w). If number of points in w is small, then the required y value may not actually correspond to an actual point on the curve. See second figure. There is no point for y = 1, so the nearest neighbouring point is selected.