Main Content

hasNext

Class: systemcomposer.rptgen.finder.ProfileFinder
Namespace: systemcomposer.rptgen.finder

Determine if profile search result queue is nonempty

Since R2022b

Syntax

nonempty = hasNext(finder)

Description

nonempty = hasNext(finder) determines whether the Profile search result queue is nonempty.

Input Arguments

expand all

Profile finder, specified as a systemcomposer.rptgen.finder.ProfileFinder object.

Output Arguments

expand all

Whether queue is nonempty, returned as a logical.

Data Types: logical

Examples

expand all

Use the ProfileFinder and ProfileResult classes to generate a report.

import mlreportgen.report.*
import slreportgen.report.*
import systemcomposer.rptgen.finder.*

scExampleSmallUAV
model_name = "scExampleSmallUAVModel";
model = systemcomposer.loadModel(model_name);
rpt = slreportgen.report.Report(output="ProfileFinderReport",...
CompileModelBeforeReporting=false);
add(rpt,TitlePage("Title",sprintf('Profiles in %s Model',model_name)));
add(rpt,TableOfContents);

profileFinder = ProfileFinder("UAVComponent");

chapter = Chapter("Title","Profiles");
while hasNext(profileFinder)
    profile = next(profileFinder);
    sect = Section("Title",profile.Name);
    add(sect,profile);
    add(chapter,sect);
end

add(rpt,chapter);
close(rpt);
rptview(rpt);

Version History

Introduced in R2022b