Category: Matlab
Category Archives: Matlab
fixed point tool collect ranges problem
The input of the subsystem to be converted to fixed point in double and specified data types differ significantly,almost one thousand times.And there are many overflows in double mode,and few overflows in specified data types mode.Looking forward to your reply,thank you.The input of the subsystem to be converted to fixed point in double and specified data types differ significantly,almost one thousand times.And there are many overflows in double mode,and few overflows in specified data types mode.Looking forward to your reply,thank you. The input of the subsystem to be converted to fixed point in double and specified data types differ significantly,almost one thousand times.And there are many overflows in double mode,and few overflows in specified data types mode.Looking forward to your reply,thank you. fixed point tool, collect ranges MATLAB Answers — New Questions
Does the Vehicle Network Toolbox currently support PCAN-Developer API where I can have Simulink act as a Client connected to a Net without any hardware?
I would like to have Simulink act as a Client connected to a Net without any hardware using the PCAN-Developer 4 API, which is specified in the link below:
https://www.peak-system.com/products/software/development-packages/pcan-developer/?L=1
Is this currently supported with MATLAB and Simulink?I would like to have Simulink act as a Client connected to a Net without any hardware using the PCAN-Developer 4 API, which is specified in the link below:
https://www.peak-system.com/products/software/development-packages/pcan-developer/?L=1
Is this currently supported with MATLAB and Simulink? I would like to have Simulink act as a Client connected to a Net without any hardware using the PCAN-Developer 4 API, which is specified in the link below:
https://www.peak-system.com/products/software/development-packages/pcan-developer/?L=1
Is this currently supported with MATLAB and Simulink? vehiclenetworktoolbox, simulink, pcan MATLAB Answers — New Questions
How to add one extra seat for a different computer on an existing license?
I have a Matlab home license (#xxxxxxx) with one seat already installed on one computer. I need to activate a second seat on a different computer while keeping the first seat actived. How to add an extra activation/ seat?I have a Matlab home license (#xxxxxxx) with one seat already installed on one computer. I need to activate a second seat on a different computer while keeping the first seat actived. How to add an extra activation/ seat? I have a Matlab home license (#xxxxxxx) with one seat already installed on one computer. I need to activate a second seat on a different computer while keeping the first seat actived. How to add an extra activation/ seat? matlab activation MATLAB Answers — New Questions
Anyone have BCM/VCU or control module models in Simulink?
Hi everyone,
I’m currently learning to build control modules using Simulink and MATLAB. I was wondering if anyone has experience with or access to BCM, VCU, or other control module models in Simulink.
If you have any models (especially with sensor data integration) that you can share, it would be really helpful. I’m currently using MATLAB 2021a.
Thanks in advance!Hi everyone,
I’m currently learning to build control modules using Simulink and MATLAB. I was wondering if anyone has experience with or access to BCM, VCU, or other control module models in Simulink.
If you have any models (especially with sensor data integration) that you can share, it would be really helpful. I’m currently using MATLAB 2021a.
Thanks in advance! Hi everyone,
I’m currently learning to build control modules using Simulink and MATLAB. I was wondering if anyone has experience with or access to BCM, VCU, or other control module models in Simulink.
If you have any models (especially with sensor data integration) that you can share, it would be really helpful. I’m currently using MATLAB 2021a.
Thanks in advance! vcu, ecu, bcm MATLAB Answers — New Questions
I cant find UR18650ZTA in matlab training for battery builder
I cant find UR18650ZTA battery part number in matlab training for battery builder — I put the manufacturer as Panasonic and still I am not able to find the part number. The excersise specifically asks for this part number and I can’t find it — Can someone please helpI cant find UR18650ZTA battery part number in matlab training for battery builder — I put the manufacturer as Panasonic and still I am not able to find the part number. The excersise specifically asks for this part number and I can’t find it — Can someone please help I cant find UR18650ZTA battery part number in matlab training for battery builder — I put the manufacturer as Panasonic and still I am not able to find the part number. The excersise specifically asks for this part number and I can’t find it — Can someone please help #battery builder MATLAB Answers — New Questions
raspberry pi connect in HW resource mgr – sudo user privilege test status not enabled
How to get the privilege test status indicatoe to green so that the next provedure ocuresHow to get the privilege test status indicatoe to green so that the next provedure ocures How to get the privilege test status indicatoe to green so that the next provedure ocures pi sudo MATLAB Answers — New Questions
Looking for addon name
I found a simulink model that contains a missing block from standard library. I have search it on google, but nothing was found. Does anyone know addon/library name/link for this block? Thank you.I found a simulink model that contains a missing block from standard library. I have search it on google, but nothing was found. Does anyone know addon/library name/link for this block? Thank you. I found a simulink model that contains a missing block from standard library. I have search it on google, but nothing was found. Does anyone know addon/library name/link for this block? Thank you. simulink MATLAB Answers — New Questions
Separate tools setting callbacks for one event
Consider two tools that add annotations to a plot. Both toolA and toolB add annotations that are sensitive to the current YLim of the axis. toolA and toolB are completely independent. Either one or both may be used on any given plot.
Both tools add annotations that must be placed relative to one another within their set. For example, a series of labels that "stair step" down as the x-axis increases. So the position of any individual label has some dependence on the "previous" label (text object).
I have found that just adding a listener on YLim PostSet is insufficient, as the "Restore View" for zoom does not stimulate that callback. I have found I also need the same callback(s) invoked if the figure size is changed. I am aware of the LimitsChanged callback for axis objects and the SizeChanged callback for the figure objects, but as far as I can tell they can only point to a single callback function, not a list of functions.
I have figured out some rather hacky ways to handle this use case, but I’m wondering if there is a preferred method for doing something like this. It seems that addlistener would be the preferred way as that doesn’t overwrite a property, but I’ve been unable to find a way to get that to reliably work for all use cases (like zooming and figure resizing).
[Note that I am currently using R2022b, but there are others in our group that currently need to use MATLAB as old as R2018b. We have a number of mission-critical tools that need to be recertified if the version of MATLAB changes, so there can be lags adopting the lastest version of MATLAB.]Consider two tools that add annotations to a plot. Both toolA and toolB add annotations that are sensitive to the current YLim of the axis. toolA and toolB are completely independent. Either one or both may be used on any given plot.
Both tools add annotations that must be placed relative to one another within their set. For example, a series of labels that "stair step" down as the x-axis increases. So the position of any individual label has some dependence on the "previous" label (text object).
I have found that just adding a listener on YLim PostSet is insufficient, as the "Restore View" for zoom does not stimulate that callback. I have found I also need the same callback(s) invoked if the figure size is changed. I am aware of the LimitsChanged callback for axis objects and the SizeChanged callback for the figure objects, but as far as I can tell they can only point to a single callback function, not a list of functions.
I have figured out some rather hacky ways to handle this use case, but I’m wondering if there is a preferred method for doing something like this. It seems that addlistener would be the preferred way as that doesn’t overwrite a property, but I’ve been unable to find a way to get that to reliably work for all use cases (like zooming and figure resizing).
[Note that I am currently using R2022b, but there are others in our group that currently need to use MATLAB as old as R2018b. We have a number of mission-critical tools that need to be recertified if the version of MATLAB changes, so there can be lags adopting the lastest version of MATLAB.] Consider two tools that add annotations to a plot. Both toolA and toolB add annotations that are sensitive to the current YLim of the axis. toolA and toolB are completely independent. Either one or both may be used on any given plot.
Both tools add annotations that must be placed relative to one another within their set. For example, a series of labels that "stair step" down as the x-axis increases. So the position of any individual label has some dependence on the "previous" label (text object).
I have found that just adding a listener on YLim PostSet is insufficient, as the "Restore View" for zoom does not stimulate that callback. I have found I also need the same callback(s) invoked if the figure size is changed. I am aware of the LimitsChanged callback for axis objects and the SizeChanged callback for the figure objects, but as far as I can tell they can only point to a single callback function, not a list of functions.
I have figured out some rather hacky ways to handle this use case, but I’m wondering if there is a preferred method for doing something like this. It seems that addlistener would be the preferred way as that doesn’t overwrite a property, but I’ve been unable to find a way to get that to reliably work for all use cases (like zooming and figure resizing).
[Note that I am currently using R2022b, but there are others in our group that currently need to use MATLAB as old as R2018b. We have a number of mission-critical tools that need to be recertified if the version of MATLAB changes, so there can be lags adopting the lastest version of MATLAB.] callback, figure MATLAB Answers — New Questions
How do I access my Online Training Suite?
How do I access my Online Training Suite?How do I access my Online Training Suite? How do I access my Online Training Suite? MATLAB Answers — New Questions
How do I request physical media?
I need physical media in order to download the products. How do I request physical media?I need physical media in order to download the products. How do I request physical media? I need physical media in order to download the products. How do I request physical media? MATLAB Answers — New Questions
Problem with design verifier options
When I have opened the Design Verifier-> Options I can’t able to access the fields of the options How to fix this?When I have opened the Design Verifier-> Options I can’t able to access the fields of the options How to fix this? When I have opened the Design Verifier-> Options I can’t able to access the fields of the options How to fix this? simulink, verifier MATLAB Answers — New Questions
chebyshev II BPF magnitude response is not equal to 1 in the passband – incorrect magnitude response when using freqz(b,a)
I need to exctract frequency bands of eeg signal using iir filterbanks , i got the optimum order of chebyshev type II BPF , I designed the filter but I get magntitude response not equal to 1 in the passbands , also I get incorrect magntuide response when using freqz(b,a) , code given below and magnitude response figure when using freqz(sos,[],Fs)and freqz(b,a) , kindly check .
clear
close all
clc
% Delta (0.5 – 4) Hz
% theta (4 – 7.9) Hz
% Lower Alpha (7.9 – 10) Hz
% Upper Alpha (10.1 – 12.9) Hz
% LOW BETA (12-15) Hz
% MID BETA (15-18) Hz
Fs=173.61;% Sampling Frequency
Fn=Fs/2; % Nyquist Frequency
Wpm=[0.5 4;4 7.9;7.9 10;10.1 12.9;12 15;15 18];% Passbands
Rp=3;% Passband Ripple
Rs=40;% Stopband Ripple
for m=1:size(Wpm,1)
Wp=Wpm(m,:)/Fn;
Ws=Wp.*[0.9 1.05];
%% Design a bandpass filters
[n(m,:),Ws]=cheb2ord(Wp,Ws,Rp,Rs); % Determine filter Order
[b{m},a{m}]=cheby2(ceil(n(m,:)/2),Rs,Ws,"bandpass");
[z,p,k]=cheby2(ceil(n(m,:)/2),Rs,Ws,"bandpass"); % Transfer Function Coefficients
[sos{m},g{m}]=zp2sos(z,p,k);
[H{m},f]=freqz(sos{m},[],Fs);
[H1{m},f]=freqz(b{m},a{m},[],Fs);
subplot(size(Wpm,1),2,2*m-1)
plot(f,abs(H{m}),"LineWidth",1.5)
title(sprintf(‘Frequency Response of digital Chebyshev II order n = %d’,n(m,:)))
ylim([0 1.2*max(abs(H{m}))]),xlabel(‘Hz’) , ylabel(‘Magnitude’)
grid on , xticks([Wp*Fn Fn])
subplot(size(Wpm,1),2,2*m)
plot(f,abs(H1{m}),"LineWidth",1.5)
title(sprintf(‘Frequency Response of digital Chebyshev II order n = %d’,n(m,:)))
ylim([0 1.2*max(abs(H1{m}))]),xlabel(‘Hz’), ylabel(‘Magnitude’),
grid on , xticks([Wp*Fn Fn])
grid on , xticks([Wp*Fn Fn])
endI need to exctract frequency bands of eeg signal using iir filterbanks , i got the optimum order of chebyshev type II BPF , I designed the filter but I get magntitude response not equal to 1 in the passbands , also I get incorrect magntuide response when using freqz(b,a) , code given below and magnitude response figure when using freqz(sos,[],Fs)and freqz(b,a) , kindly check .
clear
close all
clc
% Delta (0.5 – 4) Hz
% theta (4 – 7.9) Hz
% Lower Alpha (7.9 – 10) Hz
% Upper Alpha (10.1 – 12.9) Hz
% LOW BETA (12-15) Hz
% MID BETA (15-18) Hz
Fs=173.61;% Sampling Frequency
Fn=Fs/2; % Nyquist Frequency
Wpm=[0.5 4;4 7.9;7.9 10;10.1 12.9;12 15;15 18];% Passbands
Rp=3;% Passband Ripple
Rs=40;% Stopband Ripple
for m=1:size(Wpm,1)
Wp=Wpm(m,:)/Fn;
Ws=Wp.*[0.9 1.05];
%% Design a bandpass filters
[n(m,:),Ws]=cheb2ord(Wp,Ws,Rp,Rs); % Determine filter Order
[b{m},a{m}]=cheby2(ceil(n(m,:)/2),Rs,Ws,"bandpass");
[z,p,k]=cheby2(ceil(n(m,:)/2),Rs,Ws,"bandpass"); % Transfer Function Coefficients
[sos{m},g{m}]=zp2sos(z,p,k);
[H{m},f]=freqz(sos{m},[],Fs);
[H1{m},f]=freqz(b{m},a{m},[],Fs);
subplot(size(Wpm,1),2,2*m-1)
plot(f,abs(H{m}),"LineWidth",1.5)
title(sprintf(‘Frequency Response of digital Chebyshev II order n = %d’,n(m,:)))
ylim([0 1.2*max(abs(H{m}))]),xlabel(‘Hz’) , ylabel(‘Magnitude’)
grid on , xticks([Wp*Fn Fn])
subplot(size(Wpm,1),2,2*m)
plot(f,abs(H1{m}),"LineWidth",1.5)
title(sprintf(‘Frequency Response of digital Chebyshev II order n = %d’,n(m,:)))
ylim([0 1.2*max(abs(H1{m}))]),xlabel(‘Hz’), ylabel(‘Magnitude’),
grid on , xticks([Wp*Fn Fn])
grid on , xticks([Wp*Fn Fn])
end I need to exctract frequency bands of eeg signal using iir filterbanks , i got the optimum order of chebyshev type II BPF , I designed the filter but I get magntitude response not equal to 1 in the passbands , also I get incorrect magntuide response when using freqz(b,a) , code given below and magnitude response figure when using freqz(sos,[],Fs)and freqz(b,a) , kindly check .
clear
close all
clc
% Delta (0.5 – 4) Hz
% theta (4 – 7.9) Hz
% Lower Alpha (7.9 – 10) Hz
% Upper Alpha (10.1 – 12.9) Hz
% LOW BETA (12-15) Hz
% MID BETA (15-18) Hz
Fs=173.61;% Sampling Frequency
Fn=Fs/2; % Nyquist Frequency
Wpm=[0.5 4;4 7.9;7.9 10;10.1 12.9;12 15;15 18];% Passbands
Rp=3;% Passband Ripple
Rs=40;% Stopband Ripple
for m=1:size(Wpm,1)
Wp=Wpm(m,:)/Fn;
Ws=Wp.*[0.9 1.05];
%% Design a bandpass filters
[n(m,:),Ws]=cheb2ord(Wp,Ws,Rp,Rs); % Determine filter Order
[b{m},a{m}]=cheby2(ceil(n(m,:)/2),Rs,Ws,"bandpass");
[z,p,k]=cheby2(ceil(n(m,:)/2),Rs,Ws,"bandpass"); % Transfer Function Coefficients
[sos{m},g{m}]=zp2sos(z,p,k);
[H{m},f]=freqz(sos{m},[],Fs);
[H1{m},f]=freqz(b{m},a{m},[],Fs);
subplot(size(Wpm,1),2,2*m-1)
plot(f,abs(H{m}),"LineWidth",1.5)
title(sprintf(‘Frequency Response of digital Chebyshev II order n = %d’,n(m,:)))
ylim([0 1.2*max(abs(H{m}))]),xlabel(‘Hz’) , ylabel(‘Magnitude’)
grid on , xticks([Wp*Fn Fn])
subplot(size(Wpm,1),2,2*m)
plot(f,abs(H1{m}),"LineWidth",1.5)
title(sprintf(‘Frequency Response of digital Chebyshev II order n = %d’,n(m,:)))
ylim([0 1.2*max(abs(H1{m}))]),xlabel(‘Hz’), ylabel(‘Magnitude’),
grid on , xticks([Wp*Fn Fn])
grid on , xticks([Wp*Fn Fn])
end chebyshev ii, bandpass filter, freqz, magnitude response MATLAB Answers — New Questions
Kundur Two-Area System Simulink Model (.slx) for MATLAB R2025b and Adding Distributed Generators
I am looking for a Simulink (.slx) file of the Kundur two-area power system model that is compatible with MATLAB/Simulink R2025b.
Specifically, I would like to know:
Where can I find or download a reliable Simulink implementation of Kundur’s two-area system (preferably already validated)?
If an existing model is from an older MATLAB version, what steps are required to make it compatible with R2025b?
Additionally, I want to extend the model by integrating distributed generators (DGs) into the system.
What is the recommended approach to add distributed generation units (e.g., inverter-based DGs or small synchronous generators) into the Kundur two-area system in Simulink?
Which Simulink/Simscape Electrical blocks should be used for modeling DGs?
Are there best practices for:
Connecting DGs to existing buses
Control strategies (e.g., PQ control, droop control)
Maintaining system stability after integration
Any references, example models, or guidance would be greatly appreciated.I am looking for a Simulink (.slx) file of the Kundur two-area power system model that is compatible with MATLAB/Simulink R2025b.
Specifically, I would like to know:
Where can I find or download a reliable Simulink implementation of Kundur’s two-area system (preferably already validated)?
If an existing model is from an older MATLAB version, what steps are required to make it compatible with R2025b?
Additionally, I want to extend the model by integrating distributed generators (DGs) into the system.
What is the recommended approach to add distributed generation units (e.g., inverter-based DGs or small synchronous generators) into the Kundur two-area system in Simulink?
Which Simulink/Simscape Electrical blocks should be used for modeling DGs?
Are there best practices for:
Connecting DGs to existing buses
Control strategies (e.g., PQ control, droop control)
Maintaining system stability after integration
Any references, example models, or guidance would be greatly appreciated. I am looking for a Simulink (.slx) file of the Kundur two-area power system model that is compatible with MATLAB/Simulink R2025b.
Specifically, I would like to know:
Where can I find or download a reliable Simulink implementation of Kundur’s two-area system (preferably already validated)?
If an existing model is from an older MATLAB version, what steps are required to make it compatible with R2025b?
Additionally, I want to extend the model by integrating distributed generators (DGs) into the system.
What is the recommended approach to add distributed generation units (e.g., inverter-based DGs or small synchronous generators) into the Kundur two-area system in Simulink?
Which Simulink/Simscape Electrical blocks should be used for modeling DGs?
Are there best practices for:
Connecting DGs to existing buses
Control strategies (e.g., PQ control, droop control)
Maintaining system stability after integration
Any references, example models, or guidance would be greatly appreciated. kundur’s two area bus system, transient stability MATLAB Answers — New Questions
Adding variables to a plugin interface
Hello,
I’m working on a BiQuad plugin in Matlab. In the code, I generate the coeffients and use these to build the filter. I’m trying to figure out how to display the coefficent variables in the plugin interface window. Would anyone know how to do that and add it to the grid layout? Thank you.Hello,
I’m working on a BiQuad plugin in Matlab. In the code, I generate the coeffients and use these to build the filter. I’m trying to figure out how to display the coefficent variables in the plugin interface window. Would anyone know how to do that and add it to the grid layout? Thank you. Hello,
I’m working on a BiQuad plugin in Matlab. In the code, I generate the coeffients and use these to build the filter. I’m trying to figure out how to display the coefficent variables in the plugin interface window. Would anyone know how to do that and add it to the grid layout? Thank you. plugin, variables MATLAB Answers — New Questions
How do I buy a MATLAB License on the Webstore?
What are my options for buying a MATLAB License? Can MATLAB be purchased online on the MathWorks website?What are my options for buying a MATLAB License? Can MATLAB be purchased online on the MathWorks website? What are my options for buying a MATLAB License? Can MATLAB be purchased online on the MathWorks website? MATLAB Answers — New Questions
Error in linking Claude with MATLAB using MCP server
I tried to link my claude with MATLAB using the MCP server. However there is some issue in the connection. I am receing these error messges in claude:
Could not attach to MCP server MATLAB
MCP MATLAB: Server disconnected.
Unable to connect to extension server. Please try disabling and re-enabling the extension.
I downloaded the MCP server from github and added it to the extensions in claude. I tried both – mcpb version (matlab-mcp-core-server.mcpb) and the win64 application (matlab-mcp-core-server-win64) method to try adding the extension. Still some command or settings is blocking the process.
I have also attached the screenshots of the extensions and developer tabs of claude for reference.
Is there any other setting or procedure I am missing? What might be the error here…I tried to link my claude with MATLAB using the MCP server. However there is some issue in the connection. I am receing these error messges in claude:
Could not attach to MCP server MATLAB
MCP MATLAB: Server disconnected.
Unable to connect to extension server. Please try disabling and re-enabling the extension.
I downloaded the MCP server from github and added it to the extensions in claude. I tried both – mcpb version (matlab-mcp-core-server.mcpb) and the win64 application (matlab-mcp-core-server-win64) method to try adding the extension. Still some command or settings is blocking the process.
I have also attached the screenshots of the extensions and developer tabs of claude for reference.
Is there any other setting or procedure I am missing? What might be the error here… I tried to link my claude with MATLAB using the MCP server. However there is some issue in the connection. I am receing these error messges in claude:
Could not attach to MCP server MATLAB
MCP MATLAB: Server disconnected.
Unable to connect to extension server. Please try disabling and re-enabling the extension.
I downloaded the MCP server from github and added it to the extensions in claude. I tried both – mcpb version (matlab-mcp-core-server.mcpb) and the win64 application (matlab-mcp-core-server-win64) method to try adding the extension. Still some command or settings is blocking the process.
I have also attached the screenshots of the extensions and developer tabs of claude for reference.
Is there any other setting or procedure I am missing? What might be the error here… mcp server, claude extensions MATLAB Answers — New Questions
Inconsistent pressure, enthalpy and entropy from thermodynamic properties sensor and pressure sensor compared with CoolProp
I’m looking at the reversible heat pump example found here:
https://www.mathworks.com/help/hydro/ug/ReversibleHeatPumpExample.html
I run the example as-is, and then look at results in Simscape results explorer, focusing on three values calculated within S1: pressure from the Saturation Properties Sensor and enthalpy and entropy from the Thermodynamic Properties Sensor. I then move those plots to a figure and highlight three values at a single time:
The simulink model results give P=0.845676 MPa, H=423.098kJ/kg and S=1.87762kJ/kgK
However, when I use CoolProp within matlab to calculate entropy at the pressure and enthalpy combination I get a different value than given by the saturation properties sensor:
py.CoolProp.CoolProp.PropsSI(‘S’, ‘P’, 0.845676e6, ‘H’, 423.098*1e3, ‘R410A’)/1000
ans =
1.8113
Why is CoolProp giving 1.8113kJ/kgK but the thermodynamic properties sensor is giving 1.87762kJ/kgK?I’m looking at the reversible heat pump example found here:
https://www.mathworks.com/help/hydro/ug/ReversibleHeatPumpExample.html
I run the example as-is, and then look at results in Simscape results explorer, focusing on three values calculated within S1: pressure from the Saturation Properties Sensor and enthalpy and entropy from the Thermodynamic Properties Sensor. I then move those plots to a figure and highlight three values at a single time:
The simulink model results give P=0.845676 MPa, H=423.098kJ/kg and S=1.87762kJ/kgK
However, when I use CoolProp within matlab to calculate entropy at the pressure and enthalpy combination I get a different value than given by the saturation properties sensor:
py.CoolProp.CoolProp.PropsSI(‘S’, ‘P’, 0.845676e6, ‘H’, 423.098*1e3, ‘R410A’)/1000
ans =
1.8113
Why is CoolProp giving 1.8113kJ/kgK but the thermodynamic properties sensor is giving 1.87762kJ/kgK? I’m looking at the reversible heat pump example found here:
https://www.mathworks.com/help/hydro/ug/ReversibleHeatPumpExample.html
I run the example as-is, and then look at results in Simscape results explorer, focusing on three values calculated within S1: pressure from the Saturation Properties Sensor and enthalpy and entropy from the Thermodynamic Properties Sensor. I then move those plots to a figure and highlight three values at a single time:
The simulink model results give P=0.845676 MPa, H=423.098kJ/kg and S=1.87762kJ/kgK
However, when I use CoolProp within matlab to calculate entropy at the pressure and enthalpy combination I get a different value than given by the saturation properties sensor:
py.CoolProp.CoolProp.PropsSI(‘S’, ‘P’, 0.845676e6, ‘H’, 423.098*1e3, ‘R410A’)/1000
ans =
1.8113
Why is CoolProp giving 1.8113kJ/kgK but the thermodynamic properties sensor is giving 1.87762kJ/kgK? simulink, fluid properties, saturation properties sensor, entropy MATLAB Answers — New Questions
Dependency analyzer refuses to work
I have tried to run the Dependency Analyzer from the Apps tab countless times and it has only worked once. I didn’t do anything differently from the previous and next attempt, it just randomly worked. I have tried selecting individual files and whole folders. It shows it’s analyzing each item, then throws an error and says it’s "Updating the graph" forever and all you can do is close the window.
I’ve tried reinstalling and updating Matlab, running as administrator, trying different file types, etc. all to no avail.I have tried to run the Dependency Analyzer from the Apps tab countless times and it has only worked once. I didn’t do anything differently from the previous and next attempt, it just randomly worked. I have tried selecting individual files and whole folders. It shows it’s analyzing each item, then throws an error and says it’s "Updating the graph" forever and all you can do is close the window.
I’ve tried reinstalling and updating Matlab, running as administrator, trying different file types, etc. all to no avail. I have tried to run the Dependency Analyzer from the Apps tab countless times and it has only worked once. I didn’t do anything differently from the previous and next attempt, it just randomly worked. I have tried selecting individual files and whole folders. It shows it’s analyzing each item, then throws an error and says it’s "Updating the graph" forever and all you can do is close the window.
I’ve tried reinstalling and updating Matlab, running as administrator, trying different file types, etc. all to no avail. error MATLAB Answers — New Questions
File Exchange can’t use the publish functionality?
For the past two months at any time I haven’t been able to use FEX’s ‘publish’ feature. After clicking that button, a popup appears saying:
‘The application is currently unavailable.
We’ve been notified of the issue and are looking into it.’
Has anyone else had the same problem as me?
I’m currently in Mainland China; with or without VPN, switching regions, it always shows this error. The browser I’m using is the latest version of Microsoft Edge.”For the past two months at any time I haven’t been able to use FEX’s ‘publish’ feature. After clicking that button, a popup appears saying:
‘The application is currently unavailable.
We’ve been notified of the issue and are looking into it.’
Has anyone else had the same problem as me?
I’m currently in Mainland China; with or without VPN, switching regions, it always shows this error. The browser I’m using is the latest version of Microsoft Edge.” For the past two months at any time I haven’t been able to use FEX’s ‘publish’ feature. After clicking that button, a popup appears saying:
‘The application is currently unavailable.
We’ve been notified of the issue and are looking into it.’
Has anyone else had the same problem as me?
I’m currently in Mainland China; with or without VPN, switching regions, it always shows this error. The browser I’m using is the latest version of Microsoft Edge.” publish, fex, web MATLAB Answers — New Questions
2 area bus system
I’m unable to find Kundur bus system file.I’m unable to find Kundur bus system file. I’m unable to find Kundur bus system file. kundur-two-area-bus-system MATLAB Answers — New Questions









