It is known that modern CPUs have both Performance cores (P-cores) and efficiency cores (E-cores), different types of CPU cores that have different purposes and are designed for different tasks. P-cores typically have higher clock speeds and designed for high-performance tasks, while E-cores operate at lower clock speeds and focus on energy-efficient processing. In MATLAB, maxNumCompThreads returns the current maximum number of computational threads. Currently, the maximum number of computational threads is equal to the number of physical cores on your machine. How MATLAB makes the distinction between P-Cores and E-Cores ? NOTE:- Matlabsolutions.com provide latest MatLab Homework Help, MatLab Assignment Help , Finance Assignment Help for students, engineers and researchers in Multiple Branches like ECE, EEE, CSE, Mechanical, Civil with 100% output.Matlab Code for B.E, B.Tech,M.E,M.Tech, Ph.D. Scholars with 100% privacy guaranteed. Get MATLAB projects...
please i would like to know how to put that function ( wvtool ) in my GUI interface
as example i will put this code in any pushbottom and will show it in my GUI axis1 ??
L = 64; wvtool(hamming(L))
ANSWER
Matlabsolutions.com provide latest MatLab Homework Help,MatLab Assignment Help for students, engineers and researchers in Multiple Branches like ECE, EEE, CSE, Mechanical, Civil with 100% output.Matlab Code for B.E, B.Tech,M.E,M.Tech, Ph.D. Scholars with 100% privacy guaranteed. Get MATLAB projects with source code for your learning and research.
No, you cannot do that. wvtool() is a GUI with a toolbar and multiple axes of plots. In MATLAB, it is not possible for a GUI to be contained within an axes. GUIs that do not have toolbars can be placed inside uipanel, but not inside an axes. You could record the figure handle returned from wvtool() and locate the axes inside the figure and move them to a container object in your original figure. The container objects that can contain axes are uipanel, hggroup, or hgtransform. One axes cannot contain another.Try this code:%we cannot move the axes of a wvtool into an axes, but we can
%find the parent container of the axes and move the wvtool
%objects into there
parent_container = ancestor(axis1, {'hgtransform','hggroup','uipanel', 'uitab', 'figure'});
%now create the wvtool
wvfigh = wvtool(hamming(L));
%locate the axes in the generated wvtool
wvfigax = findall(wvfigh, 'type', 'axes');
%and move them into the parent container we located
set(wvfigax, 'Parent', parent_container);
%and now get rid of the empty wvtool
delete(wvfigh)
Matlabsolutions.com provide latest MatLab Homework Help,MatLab Assignment Help for students, engineers and researchers in Multiple Branches like ECE, EEE, CSE, Mechanical, Civil with 100% output.Matlab Code for B.E, B.Tech,M.E,M.Tech, Ph.D. Scholars with 100% privacy guaranteed. Get MATLAB projects with source code for your learning and research.
No, you cannot do that. wvtool() is a GUI with a toolbar and multiple axes of plots. In MATLAB, it is not possible for a GUI to be contained within an axes. GUIs that do not have toolbars can be placed inside uipanel, but not inside an axes.
You could record the figure handle returned from wvtool() and locate the axes inside the figure and move them to a container object in your original figure. The container objects that can contain axes are uipanel, hggroup, or hgtransform. One axes cannot contain another.
Try this code:
%we cannot move the axes of a wvtool into an axes, but we can %find the parent container of the axes and move the wvtool %objects into there parent_container = ancestor(axis1, {'hgtransform','hggroup','uipanel', 'uitab', 'figure'}); %now create the wvtool wvfigh = wvtool(hamming(L)); %locate the axes in the generated wvtool wvfigax = findall(wvfigh, 'type', 'axes'); %and move them into the parent container we located set(wvfigax, 'Parent', parent_container); %and now get rid of the empty wvtool delete(wvfigh)
Comments
Post a Comment