Email: helpdesk@telkomuniversity.ac.id

This Portal for internal use only!

  • My Download
  • Checkout
Application Package Repository Telkom University
All Categories

All Categories

  • Visual Paradigm
  • IBM
  • Adobe
  • Google
  • Matlab
  • Microsoft
    • Microsoft Apps
    • Analytics
    • AI + Machine Learning
    • Compute
    • Database
    • Developer Tools
    • Internet Of Things
    • Learning Services
    • Middleware System
    • Networking
    • Operating System
    • Productivity Tools
    • Security
    • VLS
      • Office
      • Windows
  • Opensource
  • Wordpress
    • Plugin WP
    • Themes WP
  • Others

Search

0 Wishlist

Cart

Categories
  • Microsoft
    • Microsoft Apps
    • Office
    • Operating System
    • VLS
    • Developer Tools
    • Productivity Tools
    • Database
    • AI + Machine Learning
    • Middleware System
    • Learning Services
    • Analytics
    • Networking
    • Compute
    • Security
    • Internet Of Things
  • Adobe
  • Matlab
  • Google
  • Visual Paradigm
  • WordPress
    • Plugin WP
    • Themes WP
  • Opensource
  • Others
More Categories Less Categories
  • Get Pack
    • Product Category
    • Simple Product
    • Grouped Product
    • Variable Product
    • External Product
  • My Account
    • Download
    • Cart
    • Checkout
    • Login
  • About Us
    • Contact
    • Forum
    • Frequently Questions
    • Privacy Policy
  • Forum
    • News
      • Category
      • News Tag

iconTicket Service Desk

  • My Download
  • Checkout
Application Package Repository Telkom University
All Categories

All Categories

  • Visual Paradigm
  • IBM
  • Adobe
  • Google
  • Matlab
  • Microsoft
    • Microsoft Apps
    • Analytics
    • AI + Machine Learning
    • Compute
    • Database
    • Developer Tools
    • Internet Of Things
    • Learning Services
    • Middleware System
    • Networking
    • Operating System
    • Productivity Tools
    • Security
    • VLS
      • Office
      • Windows
  • Opensource
  • Wordpress
    • Plugin WP
    • Themes WP
  • Others

Search

0 Wishlist

Cart

Menu
  • Home
    • Download Application Package Repository Telkom University
    • Application Package Repository Telkom University
    • Download Official License Telkom University
    • Download Installer Application Pack
    • Product Category
    • Simple Product
    • Grouped Product
    • Variable Product
    • External Product
  • All Pack
    • Microsoft
      • Operating System
      • Productivity Tools
      • Developer Tools
      • Database
      • AI + Machine Learning
      • Middleware System
      • Networking
      • Compute
      • Security
      • Analytics
      • Internet Of Things
      • Learning Services
    • Microsoft Apps
      • VLS
    • Adobe
    • Matlab
    • WordPress
      • Themes WP
      • Plugin WP
    • Google
    • Opensource
    • Others
  • My account
    • Download
    • Get Pack
    • Cart
    • Checkout
  • News
    • Category
    • News Tag
  • Forum
  • About Us
    • Privacy Policy
    • Frequently Questions
    • Contact
Home/Matlab/Compact way to plot multiple listdlg items depending on user input.

Compact way to plot multiple listdlg items depending on user input.

/ 2025-01-09
Compact way to plot multiple listdlg items depending on user input.
Matlab

I want to find a way to write a compact script that requests user input on a listdlg box and plots a graph depending on the parameters chosen (could be multiple parameters). I am relatively new to matlab and I want to write a generalized condition instead of hard-coding all possible combinations and plotting the outcome. I want to be able to plot up to 6 parameters in one graph with a compact code instead of writing the conditions 6!=6x5x4x3x2x1=720 times :/. To get a feel of my code:

list={‘Live data’,’Historic data’};
[type,tf] = listdlg(‘ListString’,list);

if type==1

list_title={‘a’,’b’,’c’};
[Topic_ID,tf] = listdlg(‘ListString’,list_title);

if 1 >= Topic_ID <= 3

list_var={‘NO2′,’CO’,’SO2′,’H2S’,’humidity’,’temperature’};
[var_pos,tf] = listdlg(‘PromptString’,’Select a variable to plot:’,’ListString’, list_var);
var_size=size(var_pos);

if var_pos==1 %Plot only NO2
figure(1)
t=datenum(datetime,’yyyy-mm-ddTHH:MM:SS.FFF’);
plot(t,NO2)
datetick(‘x’,’dd-mmm-yyyy HH:MM:SS’,’keepticks’,’keeplimits’);
xlabel(‘Time (dd-mmm-yyyy HH:MM:SS)’);
ylabel(‘NO2 (ppb)’);
title(‘NO2’);
legend(‘NO2’);
end

if isequal(var_pos,[1,2]) %Plot CO and NO2
figure(7)
t=datenum(datetime,’yyyy-mm-ddTHH:MM:SS.FFF’);
plot(t,NO2,t,CO)
datetick(‘x’,’dd-mmm-yyyy HH:MM:SS’,’keepticks’,’keeplimits’);
xlabel(‘Time (dd-mmm-yyyy HH:MM:SS)’);
ylabel(‘CO & NO2 (ppb)’);
title(‘CO & NO2’);
legend(‘NO2′,’CO’);
end

Where var_pos is the matrix that contains which list items were chosen. Appreciate any help. I can’t figure it out.I want to find a way to write a compact script that requests user input on a listdlg box and plots a graph depending on the parameters chosen (could be multiple parameters). I am relatively new to matlab and I want to write a generalized condition instead of hard-coding all possible combinations and plotting the outcome. I want to be able to plot up to 6 parameters in one graph with a compact code instead of writing the conditions 6!=6x5x4x3x2x1=720 times :/. To get a feel of my code:

list={‘Live data’,’Historic data’};
[type,tf] = listdlg(‘ListString’,list);

if type==1

list_title={‘a’,’b’,’c’};
[Topic_ID,tf] = listdlg(‘ListString’,list_title);

if 1 >= Topic_ID <= 3

list_var={‘NO2′,’CO’,’SO2′,’H2S’,’humidity’,’temperature’};
[var_pos,tf] = listdlg(‘PromptString’,’Select a variable to plot:’,’ListString’, list_var);
var_size=size(var_pos);

if var_pos==1 %Plot only NO2
figure(1)
t=datenum(datetime,’yyyy-mm-ddTHH:MM:SS.FFF’);
plot(t,NO2)
datetick(‘x’,’dd-mmm-yyyy HH:MM:SS’,’keepticks’,’keeplimits’);
xlabel(‘Time (dd-mmm-yyyy HH:MM:SS)’);
ylabel(‘NO2 (ppb)’);
title(‘NO2’);
legend(‘NO2’);
end

if isequal(var_pos,[1,2]) %Plot CO and NO2
figure(7)
t=datenum(datetime,’yyyy-mm-ddTHH:MM:SS.FFF’);
plot(t,NO2,t,CO)
datetick(‘x’,’dd-mmm-yyyy HH:MM:SS’,’keepticks’,’keeplimits’);
xlabel(‘Time (dd-mmm-yyyy HH:MM:SS)’);
ylabel(‘CO & NO2 (ppb)’);
title(‘CO & NO2’);
legend(‘NO2′,’CO’);
end

Where var_pos is the matrix that contains which list items were chosen. Appreciate any help. I can’t figure it out. I want to find a way to write a compact script that requests user input on a listdlg box and plots a graph depending on the parameters chosen (could be multiple parameters). I am relatively new to matlab and I want to write a generalized condition instead of hard-coding all possible combinations and plotting the outcome. I want to be able to plot up to 6 parameters in one graph with a compact code instead of writing the conditions 6!=6x5x4x3x2x1=720 times :/. To get a feel of my code:

list={‘Live data’,’Historic data’};
[type,tf] = listdlg(‘ListString’,list);

if type==1

list_title={‘a’,’b’,’c’};
[Topic_ID,tf] = listdlg(‘ListString’,list_title);

if 1 >= Topic_ID <= 3

list_var={‘NO2′,’CO’,’SO2′,’H2S’,’humidity’,’temperature’};
[var_pos,tf] = listdlg(‘PromptString’,’Select a variable to plot:’,’ListString’, list_var);
var_size=size(var_pos);

if var_pos==1 %Plot only NO2
figure(1)
t=datenum(datetime,’yyyy-mm-ddTHH:MM:SS.FFF’);
plot(t,NO2)
datetick(‘x’,’dd-mmm-yyyy HH:MM:SS’,’keepticks’,’keeplimits’);
xlabel(‘Time (dd-mmm-yyyy HH:MM:SS)’);
ylabel(‘NO2 (ppb)’);
title(‘NO2’);
legend(‘NO2’);
end

if isequal(var_pos,[1,2]) %Plot CO and NO2
figure(7)
t=datenum(datetime,’yyyy-mm-ddTHH:MM:SS.FFF’);
plot(t,NO2,t,CO)
datetick(‘x’,’dd-mmm-yyyy HH:MM:SS’,’keepticks’,’keeplimits’);
xlabel(‘Time (dd-mmm-yyyy HH:MM:SS)’);
ylabel(‘CO & NO2 (ppb)’);
title(‘CO & NO2’);
legend(‘NO2′,’CO’);
end

Where var_pos is the matrix that contains which list items were chosen. Appreciate any help. I can’t figure it out. listdlg, multiple plots MATLAB Answers — New Questions

​

Tags: matlab

Share this!

Related posts

How to create excel sheet for developed model using MATLAB
2025-05-16

How to create excel sheet for developed model using MATLAB

How to express constants of integral
2025-05-16

How to express constants of integral

2019b download installer
2025-05-16

2019b download installer

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

Categories

  • Matlab
  • Microsoft
  • News
  • Other
Application Package Repository Telkom University

Tags

matlab microsoft opensources
Application Package Download License

Application Package Download License

Adobe
Google for Education
IBM
Matlab
Microsoft
Wordpress
Visual Paradigm
Opensource

Sign Up For Newsletters

Be the First to Know. Sign up for newsletter today

Application Package Repository Telkom University

Portal Application Package Repository Telkom University, for internal use only, empower civitas academica in study and research.

Information

  • Telkom University
  • About Us
  • Contact
  • Forum Discussion
  • FAQ
  • Helpdesk Ticket

Contact Us

  • Ask: Any question please read FAQ
  • Mail: helpdesk@telkomuniversity.ac.id
  • Call: +62 823-1994-9941
  • WA: +62 823-1994-9943
  • Site: Gedung Panambulai. Jl. Telekomunikasi

Copyright © Telkom University. All Rights Reserved. ch

  • FAQ
  • Privacy Policy
  • Term

This Application Package for internal Telkom University only (students and employee). Chiers... Dismiss