code for a known answer
8 次查看(过去 30 天)
显示 更早的评论
i have a code that plots a figure. Now say that i don't know what the value of 'a' is. I am trying to write a basic numerical code to find the value of 'a' from the figure/ info (not using really complexed matlab functions). I have a complexed matlab function that i am using to find 'a' also, (thanks Azzi). I plan to compare the basic numerical code with that found with the matlab function. Any help would be appreciated.
%Plots fourier transform.
a=5;
w=-a:a/100:a;
F=2*sin(a*w)./w;
plot(w,F)
%finds value of -a- using complexed matlab functions
x=get(gca,'xlim');
a1=x(end);
disp(a1);
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating, Deleting, and Querying Graphics Objects 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!