Filter löschen
Filter löschen

how to plot input and output separately in single scope

1 Ansicht (letzte 30 Tage)
suneetha j
suneetha j am 1 Mär. 2017
Beantwortet: Mann Baidi am 19 Feb. 2024
how to plot input and output separately in single scope

Antworten (1)

Mann Baidi
Mann Baidi am 19 Feb. 2024
Hi,
I understand that you would like to plot the innput and output data separately inside a single scope. You can refer to the following example.
% Create some sample data for input and output
numSamples = 1000;
inputData = ones(numSamples,1);
outputData = inputData + 2.5; % Just an example output
% Create a timescope object
scope = timescope('SampleRate', 1000, 'TimeSpan', 1);
scope(inputData,outputData)
release(scope)
scope.LayoutDimensions = [2,1];
For more information on "timescope", you can refer to the following link.
Hope this will help in resolving the query!

Kategorien

Mehr zu View and Analyze Simulation Results finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by