Filter löschen
Filter löschen

Need Help with "could not evaluate maskdisplay commands of block"

71 Ansichten (letzte 30 Tage)
Ali Vali
Ali Vali am 10 Jun. 2022
Kommentiert: Vikram Kolupula am 14 Jan. 2023
Hi everyone,
I am doing the selfpaced "Simulink Fundamentals". I am doing the "Masking Subsystems" and I am getting this error message "could not evaluate maskdisplay commands of block".
According to the instructions, I have to enter the following code in the "Code" tab:
% Initialization code section
function initialization()
str1 = "Kp = " + Kp;
str2 = "Ki = " + Ki;
label = [str1;str2];
end
% Parameter callback section
In the "Icon" tab, I have been instructed to add "disp(label);". When I submit the solution, I get the following error:
"Does the following block have the correct parameter settings?
Susystem:
MaskDisplay: disp(label)"
When I go back to the "code" tab, I have warning with the "label". The warning says that "the value assigned to variable 'label' might be unused". I am not sure what it means.
Would you please help me to resolve the issue?
Thanks,
Ali
  3 Kommentare
Ali Vali
Ali Vali am 11 Jun. 2022
Thank you walter. That line is not editable,
José Escobar Escobar
José Escobar Escobar am 27 Dez. 2022
Hello Ali, I have the same problem, did you find a solution?

Melden Sie sich an, um zu kommentieren.

Antworten (3)

Prithvi Raj Pedapati
Prithvi Raj Pedapati am 18 Jul. 2022
i too have the same issue in the beggining.... i figured out after several itrations. Try following this steps
  1. reset the assignement given
  2. the line of code is correctly given, try to use the same
str1="Kp=" +Kp;
str2="Ki=" +Ki;
label= [str1; str2];
3. In the display secction by default it shows
Disp ("gain")
remove "gain" and use the following code
Disp (lable) don't use " " as it is an array not a string.
This will work 100%, make sure no spell correction in the code and icon sections

Ramishetti sai sreeja
Ramishetti sai sreeja am 13 Jun. 2022
Hi Ali Vali,
It is my understanding that, while completing self-paced "Simulink Fundamentals", you got an error while updating the initialisations of display block in mask editor.
These are lines of code as you mentioned,
str1="Kp=" +Kp;
str2="Ki=" +Ki;
label= [str1; str2];
I executed the above lines of code, and the error is not reproducible at my end.
I assume the error might be due to the end command at the end of the code which is to be removed.
If the error still persists, I recommend using the below lines of code:
str1=['Kp=' num2str(Kp)];
str2=['Ki=' num2str(Ki)];
label= char (str1, str2);
  1 Kommentar
Ali Vali
Ali Vali am 13 Jun. 2022
HI there,
Thank you for your suggestion. I can not delete 'end' because its grayed out. I also you used your code and I got the save error. The error says "The value assigned to variable 'label' might be unused" do you know what this means?
Please check the attached screenshot.
Thanks,
Ali

Melden Sie sich an, um zu kommentieren.


Ali Vali
Ali Vali am 15 Jun. 2022
Hi everyone,
Could somebody help me with this problem? I would to continune on my course>
Thanks,
Ali

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by