show
System object: phased.IntensityScope
Namespace: phased
Show intensity scope window
Syntax
show(sIS)
Description
show( shows the
display window of the sIS)phased.IntensityScope object, sIS.
Input Arguments
Intensity scope, specified as a phased.IntensityScope System object.
Example: phased.IntensityScope
Examples
Create an angle-time-intensity scope. Use the phased.IntensityScope System object™ to display simulated intensity as a function of the angular motion of a moving target. After five steps in the processing loop, use the hide method to hide the scope. At completion of the loop, use the show method to show the scope.
Simulate data for 5 seconds with a time interval of 0.5 seconds between scan lines.
nsteps = 10; dt = 0.5; timespan = nsteps*dt;
Set Up IntensityScope System Object
Create an angle-time-intensity scope having azimuth angle bins spanning −180° to 180° with 1° resolution.
scanline = zeros(361,1); angres = 1.0; angmin = -180.0; angmax = 180.0; rtidisplay = phased.IntensityScope( ... 'Name','IntensityScope Display',... 'Title','Azimuth vs. Time',... 'XLabel','Azimuth (deg)', ... 'XResolution',angres,'XOffset',angmin,... 'TimeResolution',dt,'TimeSpan',timespan, ... 'IntensityUnits','Watts',... 'Position',[100,100,800,450]);
Loop Over Scan Updates
Simulate angular motion and fill the bin containing the current angular position of the signal. Hide the scope after the 5th step and show the scope at the end of the simulation.
for k = 1:nsteps ang = -130.0 + k; binindexdx = floor((ang - angmin)/angres) + 1; scanline(binindexdx) = 1; rtidisplay(scanline); scanline(binindexdx) = 0; if k == 5 hide(rtidisplay) end pause(.1); end show(rtidisplay)

Version History
Introduced in R2016a
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
웹사이트 선택
번역된 콘텐츠를 보고 지역별 이벤트와 혜택을 살펴보려면 웹사이트를 선택하십시오. 현재 계신 지역에 따라 다음 웹사이트를 권장합니다:
또한 다음 목록에서 웹사이트를 선택하실 수도 있습니다.
사이트 성능 최적화 방법
최고의 사이트 성능을 위해 중국 사이트(중국어 또는 영어)를 선택하십시오. 현재 계신 지역에서는 다른 국가의 MathWorks 사이트 방문이 최적화되지 않았습니다.
미주
- América Latina (Español)
- Canada (English)
- United States (English)
유럽
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)