Advertisement
Guest User

Untitled

a guest
May 3rd, 2016
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. clk=handles.metricdata.clk;
  2. y=handles.metricdata.y;
  3. x=handles.metricdata.x;
  4. input_signal=handles.metricdata.input_signal;
  5. i=1;
  6. if strcmp(handles.metricdata.currentout,'checked')==1
  7. p_out{i}='clk, y';
  8. i=i+1;
  9. end
  10. if strcmp(handles.metricdata.voltageout,'checked')==1
  11. p_out{i}='clk, x';
  12. i=i+1;
  13. end
  14.  
  15. if strcmp(handles.metricdata.voltagein,'checked')==1
  16. p_out{i}='clk, input_signal';
  17. i=i+1;
  18. end
  19.  
  20. Output_Plot=strjoin(p_out,', ');
  21. Output_Plot
  22. plot(Output_Plot);
  23.  
  24. Error using plot
  25. Invalid first data argument.
  26.  
  27. Error in RTD_Simulator_Outputs>Run_Plot (line 287)
  28. plot(Output_Plot);
  29.  
  30. clk, y, clk, x, clk, input_signal
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement