Category: Matlab
Category Archives: Matlab
how can I link subplots (for brush data)?
how can I link subplots (for brush data)?
this is my code :
colors = {‘r’, ‘g’, ‘b’, ‘c’, ‘m’, ‘y’, ‘k’, [0, 0.5, 0.5], [0.5, 0.5, 0], [0, 0.5, 0], [0.5, 0, 0],[0, 0, 0.5], [0.5, 0.5, 0.5],[0.3010 0.7450 0.9330],[0.4660 0.6740 0.1880],[0.4940 0.1840 0.5560],[0.9290 0.6940 0.1250],[0.8500 0.3250 0.0980],[0.6350, 0.0780, 0.1840],[0 0.4470 0.7410] };
[filename,pathname] = uigetfile(‘*.csv’, ‘Select CSV files’, ‘MultiSelect’, ‘on’);
if isnumeric(filename) % user clicked Cancel
return
end
s=size(filename,2);
for i=1:s
o= readtable(fullfile(pathname,filename{i}));
cData1=table2array(o(:,1));
cData2=table2array(o(:,2));
fig = figure();
subplot(3,1,1)
p1=plot( cData1,cData2,…
‘Color’, colors{mod(i, numel(colors)) + 1});
hold(‘on’)
end
for i=1:s
o= readtable(fullfile(pathname,filename{i}));
cData1=table2array(o(:,1));
cData3=table2array(o(:,3));
subplot(3,1,2)
p2=plot( cData1,cData3,…
‘Color’, colors{mod(i, numel(colors)) + 1});
% grid(app.UIAxes2_2,’on’)
hold(‘on’)
end
%%%%%%%%%%%%%%%%%%%%%%%%
for i=1:s
o= readtable(fullfile(pathname,filename{i}));
cData1=table2array(o(:,1));
cData4=table2array(o(:,4));
subplot(3,1,3)
p3=plot( cData1,cData4,…
‘Color’, colors{mod(i, numel(colors)) + 1});
% grid(app.UIAxes2,’on’)
hold(‘on’)
end
b=brush(fig);
b.ActionPostCallback = {@onBrushAction,p1,p2,p3};
% callback function
function onBrushAction(~, eventdata,p1,p2,p3)
set(p1, ‘BrushData’, eventdata.Axes.Children.BrushData)
set(p2, ‘BrushData’, eventdata.Axes.Children.BrushData)
set(p3, ‘BrushData’, eventdata.Axes.Children.BrushData)
endhow can I link subplots (for brush data)?
this is my code :
colors = {‘r’, ‘g’, ‘b’, ‘c’, ‘m’, ‘y’, ‘k’, [0, 0.5, 0.5], [0.5, 0.5, 0], [0, 0.5, 0], [0.5, 0, 0],[0, 0, 0.5], [0.5, 0.5, 0.5],[0.3010 0.7450 0.9330],[0.4660 0.6740 0.1880],[0.4940 0.1840 0.5560],[0.9290 0.6940 0.1250],[0.8500 0.3250 0.0980],[0.6350, 0.0780, 0.1840],[0 0.4470 0.7410] };
[filename,pathname] = uigetfile(‘*.csv’, ‘Select CSV files’, ‘MultiSelect’, ‘on’);
if isnumeric(filename) % user clicked Cancel
return
end
s=size(filename,2);
for i=1:s
o= readtable(fullfile(pathname,filename{i}));
cData1=table2array(o(:,1));
cData2=table2array(o(:,2));
fig = figure();
subplot(3,1,1)
p1=plot( cData1,cData2,…
‘Color’, colors{mod(i, numel(colors)) + 1});
hold(‘on’)
end
for i=1:s
o= readtable(fullfile(pathname,filename{i}));
cData1=table2array(o(:,1));
cData3=table2array(o(:,3));
subplot(3,1,2)
p2=plot( cData1,cData3,…
‘Color’, colors{mod(i, numel(colors)) + 1});
% grid(app.UIAxes2_2,’on’)
hold(‘on’)
end
%%%%%%%%%%%%%%%%%%%%%%%%
for i=1:s
o= readtable(fullfile(pathname,filename{i}));
cData1=table2array(o(:,1));
cData4=table2array(o(:,4));
subplot(3,1,3)
p3=plot( cData1,cData4,…
‘Color’, colors{mod(i, numel(colors)) + 1});
% grid(app.UIAxes2,’on’)
hold(‘on’)
end
b=brush(fig);
b.ActionPostCallback = {@onBrushAction,p1,p2,p3};
% callback function
function onBrushAction(~, eventdata,p1,p2,p3)
set(p1, ‘BrushData’, eventdata.Axes.Children.BrushData)
set(p2, ‘BrushData’, eventdata.Axes.Children.BrushData)
set(p3, ‘BrushData’, eventdata.Axes.Children.BrushData)
end how can I link subplots (for brush data)?
this is my code :
colors = {‘r’, ‘g’, ‘b’, ‘c’, ‘m’, ‘y’, ‘k’, [0, 0.5, 0.5], [0.5, 0.5, 0], [0, 0.5, 0], [0.5, 0, 0],[0, 0, 0.5], [0.5, 0.5, 0.5],[0.3010 0.7450 0.9330],[0.4660 0.6740 0.1880],[0.4940 0.1840 0.5560],[0.9290 0.6940 0.1250],[0.8500 0.3250 0.0980],[0.6350, 0.0780, 0.1840],[0 0.4470 0.7410] };
[filename,pathname] = uigetfile(‘*.csv’, ‘Select CSV files’, ‘MultiSelect’, ‘on’);
if isnumeric(filename) % user clicked Cancel
return
end
s=size(filename,2);
for i=1:s
o= readtable(fullfile(pathname,filename{i}));
cData1=table2array(o(:,1));
cData2=table2array(o(:,2));
fig = figure();
subplot(3,1,1)
p1=plot( cData1,cData2,…
‘Color’, colors{mod(i, numel(colors)) + 1});
hold(‘on’)
end
for i=1:s
o= readtable(fullfile(pathname,filename{i}));
cData1=table2array(o(:,1));
cData3=table2array(o(:,3));
subplot(3,1,2)
p2=plot( cData1,cData3,…
‘Color’, colors{mod(i, numel(colors)) + 1});
% grid(app.UIAxes2_2,’on’)
hold(‘on’)
end
%%%%%%%%%%%%%%%%%%%%%%%%
for i=1:s
o= readtable(fullfile(pathname,filename{i}));
cData1=table2array(o(:,1));
cData4=table2array(o(:,4));
subplot(3,1,3)
p3=plot( cData1,cData4,…
‘Color’, colors{mod(i, numel(colors)) + 1});
% grid(app.UIAxes2,’on’)
hold(‘on’)
end
b=brush(fig);
b.ActionPostCallback = {@onBrushAction,p1,p2,p3};
% callback function
function onBrushAction(~, eventdata,p1,p2,p3)
set(p1, ‘BrushData’, eventdata.Axes.Children.BrushData)
set(p2, ‘BrushData’, eventdata.Axes.Children.BrushData)
set(p3, ‘BrushData’, eventdata.Axes.Children.BrushData)
end plot, brush, link, data MATLAB Answers — New Questions
receiving error when code is correct on matlab onramp Project – Stellar Motion II task 4?
my code:
for v = 1:7
s = spectra(:,v);
if speed(v)<= 0
plot(lambda,s,"–")
else
plot(lambda,s,"–","LineWidth",3)
end
hold on
end
hold off
It says incorrect for "Did you make a plot with seven line?" and I did? How can I fix this?my code:
for v = 1:7
s = spectra(:,v);
if speed(v)<= 0
plot(lambda,s,"–")
else
plot(lambda,s,"–","LineWidth",3)
end
hold on
end
hold off
It says incorrect for "Did you make a plot with seven line?" and I did? How can I fix this? my code:
for v = 1:7
s = spectra(:,v);
if speed(v)<= 0
plot(lambda,s,"–")
else
plot(lambda,s,"–","LineWidth",3)
end
hold on
end
hold off
It says incorrect for "Did you make a plot with seven line?" and I did? How can I fix this? error, onramp MATLAB Answers — New Questions
fftshift implementation in Simulink
I need to generate IPs for HDL implementation of an algorithm. I need to do fftshift in simulink but there is no fftshift block avaiable. Is there any way we can do fftshift of the output data from FFT block from DSP HDL toolbox? I am attaching FFT model for reference.I need to generate IPs for HDL implementation of an algorithm. I need to do fftshift in simulink but there is no fftshift block avaiable. Is there any way we can do fftshift of the output data from FFT block from DSP HDL toolbox? I am attaching FFT model for reference. I need to generate IPs for HDL implementation of an algorithm. I need to do fftshift in simulink but there is no fftshift block avaiable. Is there any way we can do fftshift of the output data from FFT block from DSP HDL toolbox? I am attaching FFT model for reference. fft, fftshift, hdl MATLAB Answers — New Questions
Simulation of a radar altimeter
Hi!
I’m facing a problem in which I need an “intermediate” level of detail for my simulation.
In my case, I’d like to simulate a radar altimeter flying at low altitude over some terrain or sea. Over this surface, suppose to have an obstacle (tree/house/ship/…). I know everything about my altimeter (pulsed radar, frenquency, pulse duration, beam width, …). A possible outcome of such a simulation could be the assessment of the impact of different gain patterns on the received pulse.
What I have always found on the internet are either too simple solution (like solving the radar equations) or too complex (Method of Moments, or similar approaches).
Regarding the radar equation, I have always wandered how it can deal with the echoes coming from the outer regions of the beamwidth of the altimeter antenna (the equation only has the boresight gain as input parameter).
On the other hand, in my opinion, approaches like MoM are really too complicated and beyond my scope.
I had a look and tried to implement some of the Matlab functions that already exist (e.g., the ones on the FMCW Radar Altimeter Simulation example), but I don’t think they meet my needs.
So I decided to try to write my own code, providing the shape of the terrain/sea surface, the shape for the obstacles (for now, just simple shapes)… I guess I’d have to sample the domain, evaluating the echoes for all these elements… however, even in this case there are a lot of parameters that I don’t know how to handle properly, for example:
– is it reasonable to discretize terrain or sea instead of assuming some model for the backscatter?
– how should the domain be discretized?
– how can I guarantee the conservation of power, considering the effects of the radiation pattern of the antenna and the aforementioned discretization of the domain?
Thanks in advance for your support.
Best regards,
AlessandroHi!
I’m facing a problem in which I need an “intermediate” level of detail for my simulation.
In my case, I’d like to simulate a radar altimeter flying at low altitude over some terrain or sea. Over this surface, suppose to have an obstacle (tree/house/ship/…). I know everything about my altimeter (pulsed radar, frenquency, pulse duration, beam width, …). A possible outcome of such a simulation could be the assessment of the impact of different gain patterns on the received pulse.
What I have always found on the internet are either too simple solution (like solving the radar equations) or too complex (Method of Moments, or similar approaches).
Regarding the radar equation, I have always wandered how it can deal with the echoes coming from the outer regions of the beamwidth of the altimeter antenna (the equation only has the boresight gain as input parameter).
On the other hand, in my opinion, approaches like MoM are really too complicated and beyond my scope.
I had a look and tried to implement some of the Matlab functions that already exist (e.g., the ones on the FMCW Radar Altimeter Simulation example), but I don’t think they meet my needs.
So I decided to try to write my own code, providing the shape of the terrain/sea surface, the shape for the obstacles (for now, just simple shapes)… I guess I’d have to sample the domain, evaluating the echoes for all these elements… however, even in this case there are a lot of parameters that I don’t know how to handle properly, for example:
– is it reasonable to discretize terrain or sea instead of assuming some model for the backscatter?
– how should the domain be discretized?
– how can I guarantee the conservation of power, considering the effects of the radiation pattern of the antenna and the aforementioned discretization of the domain?
Thanks in advance for your support.
Best regards,
Alessandro Hi!
I’m facing a problem in which I need an “intermediate” level of detail for my simulation.
In my case, I’d like to simulate a radar altimeter flying at low altitude over some terrain or sea. Over this surface, suppose to have an obstacle (tree/house/ship/…). I know everything about my altimeter (pulsed radar, frenquency, pulse duration, beam width, …). A possible outcome of such a simulation could be the assessment of the impact of different gain patterns on the received pulse.
What I have always found on the internet are either too simple solution (like solving the radar equations) or too complex (Method of Moments, or similar approaches).
Regarding the radar equation, I have always wandered how it can deal with the echoes coming from the outer regions of the beamwidth of the altimeter antenna (the equation only has the boresight gain as input parameter).
On the other hand, in my opinion, approaches like MoM are really too complicated and beyond my scope.
I had a look and tried to implement some of the Matlab functions that already exist (e.g., the ones on the FMCW Radar Altimeter Simulation example), but I don’t think they meet my needs.
So I decided to try to write my own code, providing the shape of the terrain/sea surface, the shape for the obstacles (for now, just simple shapes)… I guess I’d have to sample the domain, evaluating the echoes for all these elements… however, even in this case there are a lot of parameters that I don’t know how to handle properly, for example:
– is it reasonable to discretize terrain or sea instead of assuming some model for the backscatter?
– how should the domain be discretized?
– how can I guarantee the conservation of power, considering the effects of the radiation pattern of the antenna and the aforementioned discretization of the domain?
Thanks in advance for your support.
Best regards,
Alessandro altimeter, backscatter, radar, pulse, antenna, gain, pattern, radiation MATLAB Answers — New Questions
How can I use simulink to solve the algebraic Riccati equation?
Hi,
I need to use simulink to solve the algebraic Riccati equation. How can I do?
I ‘m using the LQR for vibrations control.Hi,
I need to use simulink to solve the algebraic Riccati equation. How can I do?
I ‘m using the LQR for vibrations control. Hi,
I need to use simulink to solve the algebraic Riccati equation. How can I do?
I ‘m using the LQR for vibrations control. riccati, simulink MATLAB Answers — New Questions
java.lang.IllegalArgumentException: NTFS ADS separator (‘:’) in file name is forbidden
When I perform Coder with single precision conversion using fixed point designer, during Mex building, following errors happn.But when I perform Coder without precision conversion, no error happens. How can I fix this problem?
Exception in thread "AWT-EventQueue-0": java.lang.IllegalArgumentException: NTFS ADS separator (‘:’) in file name is forbidden.
at org.apache.commons.io.FilenameUtils.indexOfExtension(FilenameUtils.java:746)
at org.apache.commons.io.FilenameUtils.getExtension(FilenameUtils.java:1069)
at com.mathworks.toolbox.coder.nide.editor.CoderFileBackingStore.<init>(CoderFileBackingStore.java:38)
at com.mathworks.toolbox.coder.nide.editor.CoderFileBackingStore.<init>(CoderFileBackingStore.java:30)
at com.mathworks.toolbox.coder.nide.NideArtifactSet.addSourceArtifact(NideArtifactSet.java:69)
at com.mathworks.toolbox.coder.nide.impl.CoderNideFacade.updateArtifactSet(CoderNideFacade.java:339)
at com.mathworks.toolbox.coder.nide.impl.CoderNideFacade.initFilesToModel(CoderNideFacade.java:304)
at com.mathworks.toolbox.coder.nide.impl.CoderNideFacade.access$800(CoderNideFacade.java:63)
at com.mathworks.toolbox.coder.nide.impl.CoderNideFacade$4.propertyChange(CoderNideFacade.java:207)
at java.beans.PropertyChangeSupport.fire(PropertyChangeSupport.java:335)
at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:327)
at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:263)
at com.mathworks.toolbox.coder.nide.impl.CoderNideAppModel.fireInputFilesChanged(CoderNideAppModel.java:175)
at com.mathworks.toolbox.coder.nide.impl.CoderNideAppModel.setInputFiles(CoderNideAppModel.java:171)
at com.mathworks.toolbox.coder.wfa.build.VerifyCompatibilityModel$NormalMexBuilder$1.handleFiles(VerifyCompatibilityModel.java:534)
at com.mathworks.toolbox.coder.wfa.build.CoderBuildManager$Handler$1.run(CoderBuildManager.java:250)
at com.mathworks.mwswing.MJUtilities.runOnEventDispatchThread(MJUtilities.java:911)
at com.mathworks.toolbox.coder.wfa.build.CoderBuildManager$Handler.buildFinished(CoderBuildManager.java:247)
at com.mathworks.toolbox.coder.wfa.build.BuildCommand$1$1.run(BuildCommand.java:211)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:758)
at java.awt.EventQueue.access$500(EventQueue.java:97)
at java.awt.EventQueue$3.run(EventQueue.java:709)
at java.awt.EventQueue$3.run(EventQueue.java:703)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:728)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)When I perform Coder with single precision conversion using fixed point designer, during Mex building, following errors happn.But when I perform Coder without precision conversion, no error happens. How can I fix this problem?
Exception in thread "AWT-EventQueue-0": java.lang.IllegalArgumentException: NTFS ADS separator (‘:’) in file name is forbidden.
at org.apache.commons.io.FilenameUtils.indexOfExtension(FilenameUtils.java:746)
at org.apache.commons.io.FilenameUtils.getExtension(FilenameUtils.java:1069)
at com.mathworks.toolbox.coder.nide.editor.CoderFileBackingStore.<init>(CoderFileBackingStore.java:38)
at com.mathworks.toolbox.coder.nide.editor.CoderFileBackingStore.<init>(CoderFileBackingStore.java:30)
at com.mathworks.toolbox.coder.nide.NideArtifactSet.addSourceArtifact(NideArtifactSet.java:69)
at com.mathworks.toolbox.coder.nide.impl.CoderNideFacade.updateArtifactSet(CoderNideFacade.java:339)
at com.mathworks.toolbox.coder.nide.impl.CoderNideFacade.initFilesToModel(CoderNideFacade.java:304)
at com.mathworks.toolbox.coder.nide.impl.CoderNideFacade.access$800(CoderNideFacade.java:63)
at com.mathworks.toolbox.coder.nide.impl.CoderNideFacade$4.propertyChange(CoderNideFacade.java:207)
at java.beans.PropertyChangeSupport.fire(PropertyChangeSupport.java:335)
at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:327)
at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:263)
at com.mathworks.toolbox.coder.nide.impl.CoderNideAppModel.fireInputFilesChanged(CoderNideAppModel.java:175)
at com.mathworks.toolbox.coder.nide.impl.CoderNideAppModel.setInputFiles(CoderNideAppModel.java:171)
at com.mathworks.toolbox.coder.wfa.build.VerifyCompatibilityModel$NormalMexBuilder$1.handleFiles(VerifyCompatibilityModel.java:534)
at com.mathworks.toolbox.coder.wfa.build.CoderBuildManager$Handler$1.run(CoderBuildManager.java:250)
at com.mathworks.mwswing.MJUtilities.runOnEventDispatchThread(MJUtilities.java:911)
at com.mathworks.toolbox.coder.wfa.build.CoderBuildManager$Handler.buildFinished(CoderBuildManager.java:247)
at com.mathworks.toolbox.coder.wfa.build.BuildCommand$1$1.run(BuildCommand.java:211)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:758)
at java.awt.EventQueue.access$500(EventQueue.java:97)
at java.awt.EventQueue$3.run(EventQueue.java:709)
at java.awt.EventQueue$3.run(EventQueue.java:703)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:728)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:82) When I perform Coder with single precision conversion using fixed point designer, during Mex building, following errors happn.But when I perform Coder without precision conversion, no error happens. How can I fix this problem?
Exception in thread "AWT-EventQueue-0": java.lang.IllegalArgumentException: NTFS ADS separator (‘:’) in file name is forbidden.
at org.apache.commons.io.FilenameUtils.indexOfExtension(FilenameUtils.java:746)
at org.apache.commons.io.FilenameUtils.getExtension(FilenameUtils.java:1069)
at com.mathworks.toolbox.coder.nide.editor.CoderFileBackingStore.<init>(CoderFileBackingStore.java:38)
at com.mathworks.toolbox.coder.nide.editor.CoderFileBackingStore.<init>(CoderFileBackingStore.java:30)
at com.mathworks.toolbox.coder.nide.NideArtifactSet.addSourceArtifact(NideArtifactSet.java:69)
at com.mathworks.toolbox.coder.nide.impl.CoderNideFacade.updateArtifactSet(CoderNideFacade.java:339)
at com.mathworks.toolbox.coder.nide.impl.CoderNideFacade.initFilesToModel(CoderNideFacade.java:304)
at com.mathworks.toolbox.coder.nide.impl.CoderNideFacade.access$800(CoderNideFacade.java:63)
at com.mathworks.toolbox.coder.nide.impl.CoderNideFacade$4.propertyChange(CoderNideFacade.java:207)
at java.beans.PropertyChangeSupport.fire(PropertyChangeSupport.java:335)
at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:327)
at java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:263)
at com.mathworks.toolbox.coder.nide.impl.CoderNideAppModel.fireInputFilesChanged(CoderNideAppModel.java:175)
at com.mathworks.toolbox.coder.nide.impl.CoderNideAppModel.setInputFiles(CoderNideAppModel.java:171)
at com.mathworks.toolbox.coder.wfa.build.VerifyCompatibilityModel$NormalMexBuilder$1.handleFiles(VerifyCompatibilityModel.java:534)
at com.mathworks.toolbox.coder.wfa.build.CoderBuildManager$Handler$1.run(CoderBuildManager.java:250)
at com.mathworks.mwswing.MJUtilities.runOnEventDispatchThread(MJUtilities.java:911)
at com.mathworks.toolbox.coder.wfa.build.CoderBuildManager$Handler.buildFinished(CoderBuildManager.java:247)
at com.mathworks.toolbox.coder.wfa.build.BuildCommand$1$1.run(BuildCommand.java:211)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:758)
at java.awt.EventQueue.access$500(EventQueue.java:97)
at java.awt.EventQueue$3.run(EventQueue.java:709)
at java.awt.EventQueue$3.run(EventQueue.java:703)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:728)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:82) java.lang.illegalargumentexception, matlab coder MATLAB Answers — New Questions
Optimization with non linear least square regression
In an optimisation problem I have 4 parameters to optimise. Once the algorithm converges, why does it assign the upper bound value to the first parameter, while assigning the lower bounds to the second and third?In an optimisation problem I have 4 parameters to optimise. Once the algorithm converges, why does it assign the upper bound value to the first parameter, while assigning the lower bounds to the second and third? In an optimisation problem I have 4 parameters to optimise. Once the algorithm converges, why does it assign the upper bound value to the first parameter, while assigning the lower bounds to the second and third? least square regression, lsqnonlin, curve fitting, optimization MATLAB Answers — New Questions
Matlab Compiler erroneously include YOLOv2-3-4 support packages in standaloneApp (even though I do not use them in my code) which results in 700+ MB EXE file
I recently installed these 3 support packages on my Windows 10 workstation (running Matlab R2023b Update 9 – latest AFAIK) :
Computer Vision Toolbox Model for YOLO v2 Object Detection
Computer Vision Toolbox Model for YOLO v3 Object Detection
Computer Vision Toolbox Model for YOLO v4 Object Detection
Since then, I noticed that when I build a standaloneApplication, the archive (EXE file) is enormous (700+ MB as compared to ~1.8MB beforehand)
So I decided to peek into the EXE archive (using 7-zip) to try to identify the file causing this and I realized that these where now included even though I do not use any YOLO detector in said App :
It looks like the dependency analyzer thinks I need them for some reason…
Is this a bug or else is there a setting somewhere I can use to exclude these support-packages from being included in my App ?
Thanks!
SébastienI recently installed these 3 support packages on my Windows 10 workstation (running Matlab R2023b Update 9 – latest AFAIK) :
Computer Vision Toolbox Model for YOLO v2 Object Detection
Computer Vision Toolbox Model for YOLO v3 Object Detection
Computer Vision Toolbox Model for YOLO v4 Object Detection
Since then, I noticed that when I build a standaloneApplication, the archive (EXE file) is enormous (700+ MB as compared to ~1.8MB beforehand)
So I decided to peek into the EXE archive (using 7-zip) to try to identify the file causing this and I realized that these where now included even though I do not use any YOLO detector in said App :
It looks like the dependency analyzer thinks I need them for some reason…
Is this a bug or else is there a setting somewhere I can use to exclude these support-packages from being included in my App ?
Thanks!
Sébastien I recently installed these 3 support packages on my Windows 10 workstation (running Matlab R2023b Update 9 – latest AFAIK) :
Computer Vision Toolbox Model for YOLO v2 Object Detection
Computer Vision Toolbox Model for YOLO v3 Object Detection
Computer Vision Toolbox Model for YOLO v4 Object Detection
Since then, I noticed that when I build a standaloneApplication, the archive (EXE file) is enormous (700+ MB as compared to ~1.8MB beforehand)
So I decided to peek into the EXE archive (using 7-zip) to try to identify the file causing this and I realized that these where now included even though I do not use any YOLO detector in said App :
It looks like the dependency analyzer thinks I need them for some reason…
Is this a bug or else is there a setting somewhere I can use to exclude these support-packages from being included in my App ?
Thanks!
Sébastien compiler, yolo, enormous executable, vision toolbox, support package MATLAB Answers — New Questions
Adding two columns together to create a new column of data
I am trying to add two columns of data together to create a new column, but I am receiving an error message and the data is not being added appropriately.
For example, I want to create something where I add the values of R and L to create Z:
R L Z
1 7 8
2 2 4
3 5 8
4 1 5
However when using a simple code like:
Z = R + L
We are receiving an error. I tried using the sum function, but it is simply adding all the vairables together, but not adding each row individually to create this variable Z that is a new column.I am trying to add two columns of data together to create a new column, but I am receiving an error message and the data is not being added appropriately.
For example, I want to create something where I add the values of R and L to create Z:
R L Z
1 7 8
2 2 4
3 5 8
4 1 5
However when using a simple code like:
Z = R + L
We are receiving an error. I tried using the sum function, but it is simply adding all the vairables together, but not adding each row individually to create this variable Z that is a new column. I am trying to add two columns of data together to create a new column, but I am receiving an error message and the data is not being added appropriately.
For example, I want to create something where I add the values of R and L to create Z:
R L Z
1 7 8
2 2 4
3 5 8
4 1 5
However when using a simple code like:
Z = R + L
We are receiving an error. I tried using the sum function, but it is simply adding all the vairables together, but not adding each row individually to create this variable Z that is a new column. columns, matrix array MATLAB Answers — New Questions
Initial condition from output of another Integrator block?
Hello, I want to know how can I get the end state from an integrator block and put it in as initial condition from another integrator block.
Both get the same initial condition , i want to get the end of the output value from the first integrator block as input for the second integrator block instead. I want to apply this for a in series-reactor set,so the output values from the first reactor are the input from the second.Thanks in advanceHello, I want to know how can I get the end state from an integrator block and put it in as initial condition from another integrator block.
Both get the same initial condition , i want to get the end of the output value from the first integrator block as input for the second integrator block instead. I want to apply this for a in series-reactor set,so the output values from the first reactor are the input from the second.Thanks in advance Hello, I want to know how can I get the end state from an integrator block and put it in as initial condition from another integrator block.
Both get the same initial condition , i want to get the end of the output value from the first integrator block as input for the second integrator block instead. I want to apply this for a in series-reactor set,so the output values from the first reactor are the input from the second.Thanks in advance simulink MATLAB Answers — New Questions
FRF – PSD Calculation Using Welch’s Method Producing Less Sharp Peaks for a Linear System
Hi,
I am attempting to compute the Frequency Response Function (FRF) of a linear system using Welch’s method for estimating the Power Spectral Density (PSD). However, the results I obtain lack the sharp peaks expected for a linear system, and I would like guidance on whether my code or approach is correct, or if I might be missing something fundamental.
Despite using these settings and varying the parameters, the FRF I compute does not show sharp peaks that I expect for a linear system. The peaks are relatively broad, which makes it difficult to identify resonant frequencies clearly. I am uncertain whether:
My choice of parameters (e.g., nfft,window_length,noverlapnfft, window_length, noverlapnfft,window_length,noverlap) is contributing to this issue.
There might be a problem in my preprocessing or interpretation of the data.
Please advise, thankyou!
Fs = 8192;
window_length = 3144;
noverlap = 0.75*window_length;
nfft = 2048;
FileName = ‘exp1_0’;
FileStart = 1;
FileEnd = 10;
fileDirectory = ‘D:xx’;
% Define the window function
window_function = hanning(window_length);
% Initialize accumulators for averaging
sum_Pxx = 0; % Sum of auto-power spectrum of voltage
sum_Pxy = 0; % Sum of cross-power spectrum
% Loop over all test files = averaging
for filenum = FileStart:FileEnd
% Load data from each file
fullFileName = [fileDirectory, FileName, sprintf(‘%02d’, filenum), ‘.mat’];
fileData = load(fullFileName);
% Extract Velocity and Voltage Data
velocity_data = fileData.([FileName, sprintf(‘%02d’, filenum)]).Y(4).Data; % Output: Velocity (m/s)
voltage_data = fileData.([FileName, sprintf(‘%02d’, filenum)]).Y(3).Data; % Input: Voltage (V)
% Compute PSDs using Welch’s method
[Pxx, f] = pwelch(voltage_data, window_function, noverlap, nfft, Fs); % Auto-power spectrum of voltage
[Pxy, ~] = cpsd(velocity_data, voltage_data, window_function, noverlap, nfft, Fs); % Cross-power spectrum
% Accumulate results for averaging
sum_Pxx = sum_Pxx + Pxx;
sum_Pxy = sum_Pxy + Pxy;
end
% Compute FRF (H = Pxy / Pxx)
H = sum_Pxy ./ sum_Pxx;
% Convert to dB
H_mag_dB = 20 * log10(abs(H));
% Apply smoothing and moving average
window_size = 5;
smoothed_H_w = smoothdata(H_mag_dB, ‘movmean’, window_size);
% Plot FRF
figure;
plot(f, smoothed_H_w , ‘r’);
hold on;
title([‘FRF of Random Test with – Window Length: ‘, num2str(window_length), …
‘, Overlap: ‘, num2str(noverlap), …
‘, nfft: ‘, num2str(nfft)]);
xlabel(‘Frequency (Hz)’);
ylabel(‘Magnitude (dB)’);
grid on;
xlim([1 300]);
hold off;Hi,
I am attempting to compute the Frequency Response Function (FRF) of a linear system using Welch’s method for estimating the Power Spectral Density (PSD). However, the results I obtain lack the sharp peaks expected for a linear system, and I would like guidance on whether my code or approach is correct, or if I might be missing something fundamental.
Despite using these settings and varying the parameters, the FRF I compute does not show sharp peaks that I expect for a linear system. The peaks are relatively broad, which makes it difficult to identify resonant frequencies clearly. I am uncertain whether:
My choice of parameters (e.g., nfft,window_length,noverlapnfft, window_length, noverlapnfft,window_length,noverlap) is contributing to this issue.
There might be a problem in my preprocessing or interpretation of the data.
Please advise, thankyou!
Fs = 8192;
window_length = 3144;
noverlap = 0.75*window_length;
nfft = 2048;
FileName = ‘exp1_0’;
FileStart = 1;
FileEnd = 10;
fileDirectory = ‘D:xx’;
% Define the window function
window_function = hanning(window_length);
% Initialize accumulators for averaging
sum_Pxx = 0; % Sum of auto-power spectrum of voltage
sum_Pxy = 0; % Sum of cross-power spectrum
% Loop over all test files = averaging
for filenum = FileStart:FileEnd
% Load data from each file
fullFileName = [fileDirectory, FileName, sprintf(‘%02d’, filenum), ‘.mat’];
fileData = load(fullFileName);
% Extract Velocity and Voltage Data
velocity_data = fileData.([FileName, sprintf(‘%02d’, filenum)]).Y(4).Data; % Output: Velocity (m/s)
voltage_data = fileData.([FileName, sprintf(‘%02d’, filenum)]).Y(3).Data; % Input: Voltage (V)
% Compute PSDs using Welch’s method
[Pxx, f] = pwelch(voltage_data, window_function, noverlap, nfft, Fs); % Auto-power spectrum of voltage
[Pxy, ~] = cpsd(velocity_data, voltage_data, window_function, noverlap, nfft, Fs); % Cross-power spectrum
% Accumulate results for averaging
sum_Pxx = sum_Pxx + Pxx;
sum_Pxy = sum_Pxy + Pxy;
end
% Compute FRF (H = Pxy / Pxx)
H = sum_Pxy ./ sum_Pxx;
% Convert to dB
H_mag_dB = 20 * log10(abs(H));
% Apply smoothing and moving average
window_size = 5;
smoothed_H_w = smoothdata(H_mag_dB, ‘movmean’, window_size);
% Plot FRF
figure;
plot(f, smoothed_H_w , ‘r’);
hold on;
title([‘FRF of Random Test with – Window Length: ‘, num2str(window_length), …
‘, Overlap: ‘, num2str(noverlap), …
‘, nfft: ‘, num2str(nfft)]);
xlabel(‘Frequency (Hz)’);
ylabel(‘Magnitude (dB)’);
grid on;
xlim([1 300]);
hold off; Hi,
I am attempting to compute the Frequency Response Function (FRF) of a linear system using Welch’s method for estimating the Power Spectral Density (PSD). However, the results I obtain lack the sharp peaks expected for a linear system, and I would like guidance on whether my code or approach is correct, or if I might be missing something fundamental.
Despite using these settings and varying the parameters, the FRF I compute does not show sharp peaks that I expect for a linear system. The peaks are relatively broad, which makes it difficult to identify resonant frequencies clearly. I am uncertain whether:
My choice of parameters (e.g., nfft,window_length,noverlapnfft, window_length, noverlapnfft,window_length,noverlap) is contributing to this issue.
There might be a problem in my preprocessing or interpretation of the data.
Please advise, thankyou!
Fs = 8192;
window_length = 3144;
noverlap = 0.75*window_length;
nfft = 2048;
FileName = ‘exp1_0’;
FileStart = 1;
FileEnd = 10;
fileDirectory = ‘D:xx’;
% Define the window function
window_function = hanning(window_length);
% Initialize accumulators for averaging
sum_Pxx = 0; % Sum of auto-power spectrum of voltage
sum_Pxy = 0; % Sum of cross-power spectrum
% Loop over all test files = averaging
for filenum = FileStart:FileEnd
% Load data from each file
fullFileName = [fileDirectory, FileName, sprintf(‘%02d’, filenum), ‘.mat’];
fileData = load(fullFileName);
% Extract Velocity and Voltage Data
velocity_data = fileData.([FileName, sprintf(‘%02d’, filenum)]).Y(4).Data; % Output: Velocity (m/s)
voltage_data = fileData.([FileName, sprintf(‘%02d’, filenum)]).Y(3).Data; % Input: Voltage (V)
% Compute PSDs using Welch’s method
[Pxx, f] = pwelch(voltage_data, window_function, noverlap, nfft, Fs); % Auto-power spectrum of voltage
[Pxy, ~] = cpsd(velocity_data, voltage_data, window_function, noverlap, nfft, Fs); % Cross-power spectrum
% Accumulate results for averaging
sum_Pxx = sum_Pxx + Pxx;
sum_Pxy = sum_Pxy + Pxy;
end
% Compute FRF (H = Pxy / Pxx)
H = sum_Pxy ./ sum_Pxx;
% Convert to dB
H_mag_dB = 20 * log10(abs(H));
% Apply smoothing and moving average
window_size = 5;
smoothed_H_w = smoothdata(H_mag_dB, ‘movmean’, window_size);
% Plot FRF
figure;
plot(f, smoothed_H_w , ‘r’);
hold on;
title([‘FRF of Random Test with – Window Length: ‘, num2str(window_length), …
‘, Overlap: ‘, num2str(noverlap), …
‘, nfft: ‘, num2str(nfft)]);
xlabel(‘Frequency (Hz)’);
ylabel(‘Magnitude (dB)’);
grid on;
xlim([1 300]);
hold off; fft, psd MATLAB Answers — New Questions
Why do I get an error regarding third-party software when downloading or installing a support package?
When downloading or installing a support package I get an error regarding being unable to install third-party software.When downloading or installing a support package I get an error regarding being unable to install third-party software. When downloading or installing a support package I get an error regarding being unable to install third-party software. MATLAB Answers — New Questions
Question about training neural networks for regression problem using the Adam optimizer
Hello,
I am trying to construct and train a neural network to do a regression task for multi-output problem. However, I am starting with a toy problem with single output in order to understand how things work. I tried to use both functions ‘trainNetwork’ and ‘trainnet’ but both do not work as expected. In the toy problem, I am trying to approximate a simple function using the neural network with only 2 layers of 20 neuros per layer. The network does not converge for either of the functions above.
Could you tell me if I am doing something wrong in the way I am using them. Thank you
clear; clc; close all;
t = linspace(0,2*pi,500);
s = cos(2*pi*t).*exp(0.1*t) + sech(0.2*t);
%%
% Normalize inputs to the range [0, 1]
input_min = min(t); % Overall minimum
input_max = max(t); % Overall maximum
normalized_inputs = (t – input_min) / (input_max – input_min);
% Normalize outputs to the range [0, 1]
output_min = min(s); % Overall minimum
output_max = max(s); % Overall maximum
normalized_outputs = (s – output_min) / (output_max – output_min);
%%
% Define the architecture
layers = [
featureInputLayer(size(normalized_inputs, 1)) % Input layer
fullyConnectedLayer(20) % Hidden layer with 20 neurons
reluLayer % Activation function
fullyConnectedLayer(20) % Hidden layer with 20 neurons
reluLayer % Activation function
fullyConnectedLayer(size(normalized_outputs, 1)) % Output layer
regressionLayer % Regression layer for continuous outputs
];
idx = randperm(numel(t));
train_idx = idx(1:round(0.8*numel(t)));
val_idx = idx(round(0.8*numel(t))+1:end);
t_train = normalized_inputs(train_idx);
s_train = normalized_outputs(train_idx);
t_val = normalized_inputs(val_idx);
s_val = normalized_outputs(val_idx);
miniBatchSize = 32;
options = trainingOptions(‘adam’, …
‘MiniBatchSize’, miniBatchSize, …
‘MaxEpochs’, 2000, …
‘InitialLearnRate’, 0.001, …
‘LearnRateSchedule’, ‘piecewise’, …
‘LearnRateDropFactor’, 0.1, …
‘LearnRateDropPeriod’, 1000, …
‘Shuffle’, ‘every-epoch’, …
‘ValidationData’, {t_val’, s_val’}, …
‘ValidationFrequency’, 10, …
‘Plots’, ‘training-progress’, …
‘Verbose’, true);
% Train the network
% net = trainnet(normalized_inputs’, normalized_outputs’, layers, "mse", options);
net = trainNetwork(normalized_inputs’, normalized_outputs’, layers, options);
% net = fitrnet(normalized_inputs’, normalized_outputs’, ‘Activations’, "tanh" , …
% "LayerSizes",[50 50 50]);
% Predict using the trained network
normalized_predictions = predict(net, normalized_inputs’)’;
% De-standardize predictions
predictions = normalized_predictions .* (output_max – output_min) + output_min;
% Evaluate performance (e.g., Mean Squared Error)
mse_loss = mean((normalized_outputs – normalized_predictions).^2, ‘all’);
fprintf(‘MSE: %.4fn’, mse_loss);
%%
figure(‘units’,’normalized’,’outerposition’,[0 0 1 1])
plot(t,normalized_outputs,’r’);
grid;
hold on
plot(t,normalized_predictions,’–b’);
legend(‘Truth’,’NN’,’Location’,’best’);
set(gcf,’color’,’w’)Hello,
I am trying to construct and train a neural network to do a regression task for multi-output problem. However, I am starting with a toy problem with single output in order to understand how things work. I tried to use both functions ‘trainNetwork’ and ‘trainnet’ but both do not work as expected. In the toy problem, I am trying to approximate a simple function using the neural network with only 2 layers of 20 neuros per layer. The network does not converge for either of the functions above.
Could you tell me if I am doing something wrong in the way I am using them. Thank you
clear; clc; close all;
t = linspace(0,2*pi,500);
s = cos(2*pi*t).*exp(0.1*t) + sech(0.2*t);
%%
% Normalize inputs to the range [0, 1]
input_min = min(t); % Overall minimum
input_max = max(t); % Overall maximum
normalized_inputs = (t – input_min) / (input_max – input_min);
% Normalize outputs to the range [0, 1]
output_min = min(s); % Overall minimum
output_max = max(s); % Overall maximum
normalized_outputs = (s – output_min) / (output_max – output_min);
%%
% Define the architecture
layers = [
featureInputLayer(size(normalized_inputs, 1)) % Input layer
fullyConnectedLayer(20) % Hidden layer with 20 neurons
reluLayer % Activation function
fullyConnectedLayer(20) % Hidden layer with 20 neurons
reluLayer % Activation function
fullyConnectedLayer(size(normalized_outputs, 1)) % Output layer
regressionLayer % Regression layer for continuous outputs
];
idx = randperm(numel(t));
train_idx = idx(1:round(0.8*numel(t)));
val_idx = idx(round(0.8*numel(t))+1:end);
t_train = normalized_inputs(train_idx);
s_train = normalized_outputs(train_idx);
t_val = normalized_inputs(val_idx);
s_val = normalized_outputs(val_idx);
miniBatchSize = 32;
options = trainingOptions(‘adam’, …
‘MiniBatchSize’, miniBatchSize, …
‘MaxEpochs’, 2000, …
‘InitialLearnRate’, 0.001, …
‘LearnRateSchedule’, ‘piecewise’, …
‘LearnRateDropFactor’, 0.1, …
‘LearnRateDropPeriod’, 1000, …
‘Shuffle’, ‘every-epoch’, …
‘ValidationData’, {t_val’, s_val’}, …
‘ValidationFrequency’, 10, …
‘Plots’, ‘training-progress’, …
‘Verbose’, true);
% Train the network
% net = trainnet(normalized_inputs’, normalized_outputs’, layers, "mse", options);
net = trainNetwork(normalized_inputs’, normalized_outputs’, layers, options);
% net = fitrnet(normalized_inputs’, normalized_outputs’, ‘Activations’, "tanh" , …
% "LayerSizes",[50 50 50]);
% Predict using the trained network
normalized_predictions = predict(net, normalized_inputs’)’;
% De-standardize predictions
predictions = normalized_predictions .* (output_max – output_min) + output_min;
% Evaluate performance (e.g., Mean Squared Error)
mse_loss = mean((normalized_outputs – normalized_predictions).^2, ‘all’);
fprintf(‘MSE: %.4fn’, mse_loss);
%%
figure(‘units’,’normalized’,’outerposition’,[0 0 1 1])
plot(t,normalized_outputs,’r’);
grid;
hold on
plot(t,normalized_predictions,’–b’);
legend(‘Truth’,’NN’,’Location’,’best’);
set(gcf,’color’,’w’) Hello,
I am trying to construct and train a neural network to do a regression task for multi-output problem. However, I am starting with a toy problem with single output in order to understand how things work. I tried to use both functions ‘trainNetwork’ and ‘trainnet’ but both do not work as expected. In the toy problem, I am trying to approximate a simple function using the neural network with only 2 layers of 20 neuros per layer. The network does not converge for either of the functions above.
Could you tell me if I am doing something wrong in the way I am using them. Thank you
clear; clc; close all;
t = linspace(0,2*pi,500);
s = cos(2*pi*t).*exp(0.1*t) + sech(0.2*t);
%%
% Normalize inputs to the range [0, 1]
input_min = min(t); % Overall minimum
input_max = max(t); % Overall maximum
normalized_inputs = (t – input_min) / (input_max – input_min);
% Normalize outputs to the range [0, 1]
output_min = min(s); % Overall minimum
output_max = max(s); % Overall maximum
normalized_outputs = (s – output_min) / (output_max – output_min);
%%
% Define the architecture
layers = [
featureInputLayer(size(normalized_inputs, 1)) % Input layer
fullyConnectedLayer(20) % Hidden layer with 20 neurons
reluLayer % Activation function
fullyConnectedLayer(20) % Hidden layer with 20 neurons
reluLayer % Activation function
fullyConnectedLayer(size(normalized_outputs, 1)) % Output layer
regressionLayer % Regression layer for continuous outputs
];
idx = randperm(numel(t));
train_idx = idx(1:round(0.8*numel(t)));
val_idx = idx(round(0.8*numel(t))+1:end);
t_train = normalized_inputs(train_idx);
s_train = normalized_outputs(train_idx);
t_val = normalized_inputs(val_idx);
s_val = normalized_outputs(val_idx);
miniBatchSize = 32;
options = trainingOptions(‘adam’, …
‘MiniBatchSize’, miniBatchSize, …
‘MaxEpochs’, 2000, …
‘InitialLearnRate’, 0.001, …
‘LearnRateSchedule’, ‘piecewise’, …
‘LearnRateDropFactor’, 0.1, …
‘LearnRateDropPeriod’, 1000, …
‘Shuffle’, ‘every-epoch’, …
‘ValidationData’, {t_val’, s_val’}, …
‘ValidationFrequency’, 10, …
‘Plots’, ‘training-progress’, …
‘Verbose’, true);
% Train the network
% net = trainnet(normalized_inputs’, normalized_outputs’, layers, "mse", options);
net = trainNetwork(normalized_inputs’, normalized_outputs’, layers, options);
% net = fitrnet(normalized_inputs’, normalized_outputs’, ‘Activations’, "tanh" , …
% "LayerSizes",[50 50 50]);
% Predict using the trained network
normalized_predictions = predict(net, normalized_inputs’)’;
% De-standardize predictions
predictions = normalized_predictions .* (output_max – output_min) + output_min;
% Evaluate performance (e.g., Mean Squared Error)
mse_loss = mean((normalized_outputs – normalized_predictions).^2, ‘all’);
fprintf(‘MSE: %.4fn’, mse_loss);
%%
figure(‘units’,’normalized’,’outerposition’,[0 0 1 1])
plot(t,normalized_outputs,’r’);
grid;
hold on
plot(t,normalized_predictions,’–b’);
legend(‘Truth’,’NN’,’Location’,’best’);
set(gcf,’color’,’w’) neural network, neural networks, regression MATLAB Answers — New Questions
Why do I get “Unable to load Support Package information” when trying to download or install a Support Package in R2016b or previous releases?
Why do I get the following error when trying to download or install a Support Package using the Legacy Support Package Installer (R2016b and previous releases)?
Error: Select an actionUnable to load support package information.This may be due to network problems. Verify your network connection and retry the support package installation. If the problem persists, contact MathWorks Technical support.Why do I get the following error when trying to download or install a Support Package using the Legacy Support Package Installer (R2016b and previous releases)?
Error: Select an actionUnable to load support package information.This may be due to network problems. Verify your network connection and retry the support package installation. If the problem persists, contact MathWorks Technical support. Why do I get the following error when trying to download or install a Support Package using the Legacy Support Package Installer (R2016b and previous releases)?
Error: Select an actionUnable to load support package information.This may be due to network problems. Verify your network connection and retry the support package installation. If the problem persists, contact MathWorks Technical support. MATLAB Answers — New Questions
How to generate a P-V curve when changing the Open Circuit Voltage and Short Circuit Current Values in a Solar Cell module?
Hello,
I’m realatively new to simulink and I am trying to generate a P-V curve using a solar cell module and a variable resistor. Whenever I use the default values for Voc and Isc in the solar cell module, I get a P-V curve. However, when I change the Voc and Isc values in the solar cell, my plot shows a linear relationship instead of a curve. Is there a way to change the Voc and Isc values in the solar cell to have it display a correct P-V curve? I have provided my working Simulink model below. Thank you.Hello,
I’m realatively new to simulink and I am trying to generate a P-V curve using a solar cell module and a variable resistor. Whenever I use the default values for Voc and Isc in the solar cell module, I get a P-V curve. However, when I change the Voc and Isc values in the solar cell, my plot shows a linear relationship instead of a curve. Is there a way to change the Voc and Isc values in the solar cell to have it display a correct P-V curve? I have provided my working Simulink model below. Thank you. Hello,
I’m realatively new to simulink and I am trying to generate a P-V curve using a solar cell module and a variable resistor. Whenever I use the default values for Voc and Isc in the solar cell module, I get a P-V curve. However, when I change the Voc and Isc values in the solar cell, my plot shows a linear relationship instead of a curve. Is there a way to change the Voc and Isc values in the solar cell to have it display a correct P-V curve? I have provided my working Simulink model below. Thank you. solar cell, open circuit voltage, short circuit current MATLAB Answers — New Questions
Simulink CAN Error Handling on C2000
We’re developing autocoded C2000 firmware using Simulink. Our application relies heavily on CAN, but we’ve been having intermittent failiures where the firmware continues to run but the C2000 CAN peripheral seems to stop operating. We see no CAN messages until we restart the controller.
We can replicate the issue by temporarily shorting the CAN lines together, which would seem to confirm the CAN controller is being put into an error state and never recovering. Reading the datasheet, this is intended behavior. However, we need our device to continue transmitting no matter what.
How can we either set the CAN peripheral to auto-recover from errors or force a reset when an error is detected?We’re developing autocoded C2000 firmware using Simulink. Our application relies heavily on CAN, but we’ve been having intermittent failiures where the firmware continues to run but the C2000 CAN peripheral seems to stop operating. We see no CAN messages until we restart the controller.
We can replicate the issue by temporarily shorting the CAN lines together, which would seem to confirm the CAN controller is being put into an error state and never recovering. Reading the datasheet, this is intended behavior. However, we need our device to continue transmitting no matter what.
How can we either set the CAN peripheral to auto-recover from errors or force a reset when an error is detected? We’re developing autocoded C2000 firmware using Simulink. Our application relies heavily on CAN, but we’ve been having intermittent failiures where the firmware continues to run but the C2000 CAN peripheral seems to stop operating. We see no CAN messages until we restart the controller.
We can replicate the issue by temporarily shorting the CAN lines together, which would seem to confirm the CAN controller is being put into an error state and never recovering. Reading the datasheet, this is intended behavior. However, we need our device to continue transmitting no matter what.
How can we either set the CAN peripheral to auto-recover from errors or force a reset when an error is detected? can, c2000, simulink MATLAB Answers — New Questions
I need an algorithm to fill in the blank vertical path pixels.
I need an algorithm to fill in the blank vertical path pixels.I need an algorithm to fill in the blank vertical path pixels. I need an algorithm to fill in the blank vertical path pixels. complete lines, continuity, edge linking MATLAB Answers — New Questions
How to use loops to scan through pixels and black out the pixels outside a shape with a (white) perimeter (image)
I am attempting to use loops to check each pixel for whether or not its within a perimeter of white. Essentially I want to keep whats inside the white perimeter while blacking out everything else. I would like to do this using a loops rather than a mask if possible so I can apply this to other similar images (Different skin colors with same white perimeter). Below I have an image listed for example. In my attempt to loop through I found I could not make the loop skip over the area between the white lines and everything but the white parts would be blacked out. Below is the code I used to try and do this:
newI =(imread(nameF));
figure;
imshow(newI);
newB = newI(:,:,1);
for r = 1:size(newB,1)
for c = 1:size(newB,2)
pixel = newB(r,c);
current = c;
if pixel == 255
for cc = current:size(newB,2)
pixel2=(newB(r,cc));
if pixel2 == 255
skip = cc;
break
end
end
else
newI(r, c, 1) = 0;
newI(r, c, 2) = 0;
newI(r, c, 3) = 0;
end
c = skip;
end
end
figure
imshow(newI)I am attempting to use loops to check each pixel for whether or not its within a perimeter of white. Essentially I want to keep whats inside the white perimeter while blacking out everything else. I would like to do this using a loops rather than a mask if possible so I can apply this to other similar images (Different skin colors with same white perimeter). Below I have an image listed for example. In my attempt to loop through I found I could not make the loop skip over the area between the white lines and everything but the white parts would be blacked out. Below is the code I used to try and do this:
newI =(imread(nameF));
figure;
imshow(newI);
newB = newI(:,:,1);
for r = 1:size(newB,1)
for c = 1:size(newB,2)
pixel = newB(r,c);
current = c;
if pixel == 255
for cc = current:size(newB,2)
pixel2=(newB(r,cc));
if pixel2 == 255
skip = cc;
break
end
end
else
newI(r, c, 1) = 0;
newI(r, c, 2) = 0;
newI(r, c, 3) = 0;
end
c = skip;
end
end
figure
imshow(newI) I am attempting to use loops to check each pixel for whether or not its within a perimeter of white. Essentially I want to keep whats inside the white perimeter while blacking out everything else. I would like to do this using a loops rather than a mask if possible so I can apply this to other similar images (Different skin colors with same white perimeter). Below I have an image listed for example. In my attempt to loop through I found I could not make the loop skip over the area between the white lines and everything but the white parts would be blacked out. Below is the code I used to try and do this:
newI =(imread(nameF));
figure;
imshow(newI);
newB = newI(:,:,1);
for r = 1:size(newB,1)
for c = 1:size(newB,2)
pixel = newB(r,c);
current = c;
if pixel == 255
for cc = current:size(newB,2)
pixel2=(newB(r,cc));
if pixel2 == 255
skip = cc;
break
end
end
else
newI(r, c, 1) = 0;
newI(r, c, 2) = 0;
newI(r, c, 3) = 0;
end
c = skip;
end
end
figure
imshow(newI) image processing MATLAB Answers — New Questions
Problem with lsqnonlin and error function implementing a bovine pericardium constitutive model
I implemented a constitutive model for the bovine pericardium to be fit with experimental data to derive four model parameters. The code runs, but I have doubts about the correct implementation of the error function. Showing the iterations on the screen, I notice that at certain points the objective function returns nan or inf. I have checked the experimental data and in some cases there are values close to zero, but I don’t think this justifies the fact that the function converges, thus giving me the 4 parameters I am looking for, but without obtaining a decent fitting with the experimental data. Moreover, optimized parameters number 2 and 3 are assigned to lower bounds, while the first optimized parameter is very high. Below is the main and the error function.
Main:
clc; clear all;close all;
load ("data_11122.mat"); % change lot number if necessary
clearvars -except data
%Model requires lambda= x/x0 instead of epsilon: calculate lambda
% from exp data and store in data struct
stress=data(1).stress; %change index to change dogbone if necessary
strain=data(1).strain; %change index to change dogbone if necessary
% stress=stress/max(abs(stress));
% strain=strain/max(abs(strain));
p_initial=[0.5 0.5 0.5 0.5];
a0=[1 0 0];
%vincoli su zeta imposti da dong ( zeta tra 0 e 1 )
lb=[0.1 0.1 0.1 0.1];
ub=[inf inf inf inf];
%ottimizzazione non lineare con metodo least square ( like Dong )
options = optimoptions(‘lsqnonlin’, ‘Display’, ‘iter’, ‘Algorithm’,’levenberg-marquardt’);
[p_opt, resnorm] = lsqnonlin(@(p) error_function(p,strain,stress,a0), p_initial,lb,ub,options);
%check plot e ricostruzione del modello con i parametri ottimizzati
c = p_opt(1); % c
k1 = p_opt(2); % k1
k2 = p_opt(3); % k2
zeta = p_opt(4); % zeta
for i=1:length(strain)
f = [strain(i) 0 0; %deformation gradient for each value of strain
0 1/sqrt(strain(i)) 0;
0 0 1/sqrt(strain(i))];
C = f .* f’; % Calcola il tensore di Cauchy-Green
prod = a0 .* a0′;
I4 = sum(sum(C .* prod)); % calcolo invariante di C
I = eye(3); % Matrice identità
sigma = 2 * f * (c / 2 * I + k1 * (1 – zeta)^2 * (I4 – 1) * (exp(k2 * ((1 – zeta) * (I4 – 1))^2))) * prod .* f’;
sigma_calculated(i)= sigma(1,1); %componente xx
end
figure(1)
plot (strain,stress);
hold on
plot(strain, sigma_calculated,’r’);
legend (‘experimental’, ‘model’,’Location’, ‘northwest’);
Error function:
function error = error_function(p,strain,stress,a0,k)
sigma_calculated = zeros(length(strain), 1);
for i = 1:length(strain)
f = [strain(i) 0 0; %deformation gradient
0 1/sqrt(strain(i)) 0;
0 0 1/sqrt(strain(i))];
C = f .* f’; % tensore di Cauchy-Green
prod = a0 .* a0′;
I4 = a0′ .* C .* a0; % calcolo IV invariante di C
I = eye(3);
sigma = 2 * f * (p(1) / 2 * I + p(2) * (1 – p(4))^2 * (I4 – 1) * (exp(p(3) * ((1 – p(4)) * (I4 – 1))^2)) * prod) .* f’;
sigma_calculated(i)= sigma(1,1); %componente xx
end
%il calcolo dell’errore va dentro o fuori dal for?
error= sum((sigma_calculated(i) – stress(i))^2); % Somma dei quadrati delle differenze
% disp([‘Iterazione: ‘, num2str(k), ‘ – Errore totale attuale: ‘, num2str(error)]);
endI implemented a constitutive model for the bovine pericardium to be fit with experimental data to derive four model parameters. The code runs, but I have doubts about the correct implementation of the error function. Showing the iterations on the screen, I notice that at certain points the objective function returns nan or inf. I have checked the experimental data and in some cases there are values close to zero, but I don’t think this justifies the fact that the function converges, thus giving me the 4 parameters I am looking for, but without obtaining a decent fitting with the experimental data. Moreover, optimized parameters number 2 and 3 are assigned to lower bounds, while the first optimized parameter is very high. Below is the main and the error function.
Main:
clc; clear all;close all;
load ("data_11122.mat"); % change lot number if necessary
clearvars -except data
%Model requires lambda= x/x0 instead of epsilon: calculate lambda
% from exp data and store in data struct
stress=data(1).stress; %change index to change dogbone if necessary
strain=data(1).strain; %change index to change dogbone if necessary
% stress=stress/max(abs(stress));
% strain=strain/max(abs(strain));
p_initial=[0.5 0.5 0.5 0.5];
a0=[1 0 0];
%vincoli su zeta imposti da dong ( zeta tra 0 e 1 )
lb=[0.1 0.1 0.1 0.1];
ub=[inf inf inf inf];
%ottimizzazione non lineare con metodo least square ( like Dong )
options = optimoptions(‘lsqnonlin’, ‘Display’, ‘iter’, ‘Algorithm’,’levenberg-marquardt’);
[p_opt, resnorm] = lsqnonlin(@(p) error_function(p,strain,stress,a0), p_initial,lb,ub,options);
%check plot e ricostruzione del modello con i parametri ottimizzati
c = p_opt(1); % c
k1 = p_opt(2); % k1
k2 = p_opt(3); % k2
zeta = p_opt(4); % zeta
for i=1:length(strain)
f = [strain(i) 0 0; %deformation gradient for each value of strain
0 1/sqrt(strain(i)) 0;
0 0 1/sqrt(strain(i))];
C = f .* f’; % Calcola il tensore di Cauchy-Green
prod = a0 .* a0′;
I4 = sum(sum(C .* prod)); % calcolo invariante di C
I = eye(3); % Matrice identità
sigma = 2 * f * (c / 2 * I + k1 * (1 – zeta)^2 * (I4 – 1) * (exp(k2 * ((1 – zeta) * (I4 – 1))^2))) * prod .* f’;
sigma_calculated(i)= sigma(1,1); %componente xx
end
figure(1)
plot (strain,stress);
hold on
plot(strain, sigma_calculated,’r’);
legend (‘experimental’, ‘model’,’Location’, ‘northwest’);
Error function:
function error = error_function(p,strain,stress,a0,k)
sigma_calculated = zeros(length(strain), 1);
for i = 1:length(strain)
f = [strain(i) 0 0; %deformation gradient
0 1/sqrt(strain(i)) 0;
0 0 1/sqrt(strain(i))];
C = f .* f’; % tensore di Cauchy-Green
prod = a0 .* a0′;
I4 = a0′ .* C .* a0; % calcolo IV invariante di C
I = eye(3);
sigma = 2 * f * (p(1) / 2 * I + p(2) * (1 – p(4))^2 * (I4 – 1) * (exp(p(3) * ((1 – p(4)) * (I4 – 1))^2)) * prod) .* f’;
sigma_calculated(i)= sigma(1,1); %componente xx
end
%il calcolo dell’errore va dentro o fuori dal for?
error= sum((sigma_calculated(i) – stress(i))^2); % Somma dei quadrati delle differenze
% disp([‘Iterazione: ‘, num2str(k), ‘ – Errore totale attuale: ‘, num2str(error)]);
end I implemented a constitutive model for the bovine pericardium to be fit with experimental data to derive four model parameters. The code runs, but I have doubts about the correct implementation of the error function. Showing the iterations on the screen, I notice that at certain points the objective function returns nan or inf. I have checked the experimental data and in some cases there are values close to zero, but I don’t think this justifies the fact that the function converges, thus giving me the 4 parameters I am looking for, but without obtaining a decent fitting with the experimental data. Moreover, optimized parameters number 2 and 3 are assigned to lower bounds, while the first optimized parameter is very high. Below is the main and the error function.
Main:
clc; clear all;close all;
load ("data_11122.mat"); % change lot number if necessary
clearvars -except data
%Model requires lambda= x/x0 instead of epsilon: calculate lambda
% from exp data and store in data struct
stress=data(1).stress; %change index to change dogbone if necessary
strain=data(1).strain; %change index to change dogbone if necessary
% stress=stress/max(abs(stress));
% strain=strain/max(abs(strain));
p_initial=[0.5 0.5 0.5 0.5];
a0=[1 0 0];
%vincoli su zeta imposti da dong ( zeta tra 0 e 1 )
lb=[0.1 0.1 0.1 0.1];
ub=[inf inf inf inf];
%ottimizzazione non lineare con metodo least square ( like Dong )
options = optimoptions(‘lsqnonlin’, ‘Display’, ‘iter’, ‘Algorithm’,’levenberg-marquardt’);
[p_opt, resnorm] = lsqnonlin(@(p) error_function(p,strain,stress,a0), p_initial,lb,ub,options);
%check plot e ricostruzione del modello con i parametri ottimizzati
c = p_opt(1); % c
k1 = p_opt(2); % k1
k2 = p_opt(3); % k2
zeta = p_opt(4); % zeta
for i=1:length(strain)
f = [strain(i) 0 0; %deformation gradient for each value of strain
0 1/sqrt(strain(i)) 0;
0 0 1/sqrt(strain(i))];
C = f .* f’; % Calcola il tensore di Cauchy-Green
prod = a0 .* a0′;
I4 = sum(sum(C .* prod)); % calcolo invariante di C
I = eye(3); % Matrice identità
sigma = 2 * f * (c / 2 * I + k1 * (1 – zeta)^2 * (I4 – 1) * (exp(k2 * ((1 – zeta) * (I4 – 1))^2))) * prod .* f’;
sigma_calculated(i)= sigma(1,1); %componente xx
end
figure(1)
plot (strain,stress);
hold on
plot(strain, sigma_calculated,’r’);
legend (‘experimental’, ‘model’,’Location’, ‘northwest’);
Error function:
function error = error_function(p,strain,stress,a0,k)
sigma_calculated = zeros(length(strain), 1);
for i = 1:length(strain)
f = [strain(i) 0 0; %deformation gradient
0 1/sqrt(strain(i)) 0;
0 0 1/sqrt(strain(i))];
C = f .* f’; % tensore di Cauchy-Green
prod = a0 .* a0′;
I4 = a0′ .* C .* a0; % calcolo IV invariante di C
I = eye(3);
sigma = 2 * f * (p(1) / 2 * I + p(2) * (1 – p(4))^2 * (I4 – 1) * (exp(p(3) * ((1 – p(4)) * (I4 – 1))^2)) * prod) .* f’;
sigma_calculated(i)= sigma(1,1); %componente xx
end
%il calcolo dell’errore va dentro o fuori dal for?
error= sum((sigma_calculated(i) – stress(i))^2); % Somma dei quadrati delle differenze
% disp([‘Iterazione: ‘, num2str(k), ‘ – Errore totale attuale: ‘, num2str(error)]);
end curve fitting, nonlinear, soft tissue MATLAB Answers — New Questions
simFunction anf dose Array from an input file
Hi. After fitting my model (fitting was successful using sbiofit) I wrote the code below to generate simfunction to run the model with estimated values and the parmetr in the gData for each case.In gData the doses has been detemined and they are diffent rated doses for each patient applied at diffent time points. I was not able to pass dosesForFit = createDoses(gData, ‘DOSE’, ‘dose_rate’, d3) to simfunction because Invalid dosing information. Specify doses as a row vector. and then I used dosesForFit = reshape(dosesForFit, 1, []); % Ensure dosesForFit is a row vector and the problem solved and simFunction was executed but the dose considered the same for all of the cases and was combinatin of all of the doses. How can I solve this problem. I attached input file and the code is below: Thanks
%% Update Parameters with Estimated Values and Running the Model
d3 = sbiodose(‘DOSE’);
d3.TargetName = ‘plasma.A1’;
d3.LagParameterName = ”;
d3.AmountUnits = ‘nanomole’;
d3.RateUnits = ‘nanomole/day’;
d3.TimeUnits=configsetObj.TimeUnits;
dosesForFit = createDoses(gData, ‘DOSE’, ‘dose_rate’, d3);
dosesForFit = reshape(dosesForFit, 1, []); % Ensure dosesForFit is a row vector
doseTable = getTable(dosesForFit);
% getTable(dosesForFit)
% Extract Observables and Experimental Data
for i = 1:length(fitResults.EstimatedParameterNames)
paramObj = sbioselect(model, ‘Name’, fitResults.EstimatedParameterNames{i});
paramObj.Value = fitResults.ParameterEstimates.Estimate(i);
end
% Define parameter names to extract
variantParams = {‘BW’, ‘SLD’, ‘HSCR’, ‘FRAPS’};
% Extract IDs in the order they appear in the input file
idsInOrder = exp_data.ID; % Retain original ID order
[uniqueIDs, ~, idOrder] = unique(idsInOrder, ‘stable’); % Preserve order from input file
% Initialize paramMatrix with zeros
numIDs = length(uniqueIDs);
paramMatrix = zeros(numIDs, length(variantParams)); % Rows for IDs, columns for parameters
% Populate paramMatrix with parameter values based on the input file order
for i = 1:numIDs
% Filter data for the current ID
currentID = uniqueIDs(i);
idData = exp_data(exp_data.ID == currentID, :);
% Assign parameter values (assume these are constant per ID)
paramMatrix(i, 🙂 = [idData.BW(1), idData.SLD(1), idData.HSCR(1), idData.FRAPS(1)];
end
% Observables for the simulation
obs = {‘CAb_plasma’, ‘CADC_plasma’, ‘CPLun_plasma’}; % Observables to track
% Create SimFunction
sfxn = createSimFunction(model, variantParams, obs, dosesForFit,’UseParallel’, true, ‘AutoAccelerate’, true);
% Simulate Using the Parameter Matrix
% Create dose table from dosesForFit
% Simulate the model using the parameter matrix
simData = sfxn(paramMatrix, [], doseTable, time);Hi. After fitting my model (fitting was successful using sbiofit) I wrote the code below to generate simfunction to run the model with estimated values and the parmetr in the gData for each case.In gData the doses has been detemined and they are diffent rated doses for each patient applied at diffent time points. I was not able to pass dosesForFit = createDoses(gData, ‘DOSE’, ‘dose_rate’, d3) to simfunction because Invalid dosing information. Specify doses as a row vector. and then I used dosesForFit = reshape(dosesForFit, 1, []); % Ensure dosesForFit is a row vector and the problem solved and simFunction was executed but the dose considered the same for all of the cases and was combinatin of all of the doses. How can I solve this problem. I attached input file and the code is below: Thanks
%% Update Parameters with Estimated Values and Running the Model
d3 = sbiodose(‘DOSE’);
d3.TargetName = ‘plasma.A1’;
d3.LagParameterName = ”;
d3.AmountUnits = ‘nanomole’;
d3.RateUnits = ‘nanomole/day’;
d3.TimeUnits=configsetObj.TimeUnits;
dosesForFit = createDoses(gData, ‘DOSE’, ‘dose_rate’, d3);
dosesForFit = reshape(dosesForFit, 1, []); % Ensure dosesForFit is a row vector
doseTable = getTable(dosesForFit);
% getTable(dosesForFit)
% Extract Observables and Experimental Data
for i = 1:length(fitResults.EstimatedParameterNames)
paramObj = sbioselect(model, ‘Name’, fitResults.EstimatedParameterNames{i});
paramObj.Value = fitResults.ParameterEstimates.Estimate(i);
end
% Define parameter names to extract
variantParams = {‘BW’, ‘SLD’, ‘HSCR’, ‘FRAPS’};
% Extract IDs in the order they appear in the input file
idsInOrder = exp_data.ID; % Retain original ID order
[uniqueIDs, ~, idOrder] = unique(idsInOrder, ‘stable’); % Preserve order from input file
% Initialize paramMatrix with zeros
numIDs = length(uniqueIDs);
paramMatrix = zeros(numIDs, length(variantParams)); % Rows for IDs, columns for parameters
% Populate paramMatrix with parameter values based on the input file order
for i = 1:numIDs
% Filter data for the current ID
currentID = uniqueIDs(i);
idData = exp_data(exp_data.ID == currentID, :);
% Assign parameter values (assume these are constant per ID)
paramMatrix(i, 🙂 = [idData.BW(1), idData.SLD(1), idData.HSCR(1), idData.FRAPS(1)];
end
% Observables for the simulation
obs = {‘CAb_plasma’, ‘CADC_plasma’, ‘CPLun_plasma’}; % Observables to track
% Create SimFunction
sfxn = createSimFunction(model, variantParams, obs, dosesForFit,’UseParallel’, true, ‘AutoAccelerate’, true);
% Simulate Using the Parameter Matrix
% Create dose table from dosesForFit
% Simulate the model using the parameter matrix
simData = sfxn(paramMatrix, [], doseTable, time); Hi. After fitting my model (fitting was successful using sbiofit) I wrote the code below to generate simfunction to run the model with estimated values and the parmetr in the gData for each case.In gData the doses has been detemined and they are diffent rated doses for each patient applied at diffent time points. I was not able to pass dosesForFit = createDoses(gData, ‘DOSE’, ‘dose_rate’, d3) to simfunction because Invalid dosing information. Specify doses as a row vector. and then I used dosesForFit = reshape(dosesForFit, 1, []); % Ensure dosesForFit is a row vector and the problem solved and simFunction was executed but the dose considered the same for all of the cases and was combinatin of all of the doses. How can I solve this problem. I attached input file and the code is below: Thanks
%% Update Parameters with Estimated Values and Running the Model
d3 = sbiodose(‘DOSE’);
d3.TargetName = ‘plasma.A1’;
d3.LagParameterName = ”;
d3.AmountUnits = ‘nanomole’;
d3.RateUnits = ‘nanomole/day’;
d3.TimeUnits=configsetObj.TimeUnits;
dosesForFit = createDoses(gData, ‘DOSE’, ‘dose_rate’, d3);
dosesForFit = reshape(dosesForFit, 1, []); % Ensure dosesForFit is a row vector
doseTable = getTable(dosesForFit);
% getTable(dosesForFit)
% Extract Observables and Experimental Data
for i = 1:length(fitResults.EstimatedParameterNames)
paramObj = sbioselect(model, ‘Name’, fitResults.EstimatedParameterNames{i});
paramObj.Value = fitResults.ParameterEstimates.Estimate(i);
end
% Define parameter names to extract
variantParams = {‘BW’, ‘SLD’, ‘HSCR’, ‘FRAPS’};
% Extract IDs in the order they appear in the input file
idsInOrder = exp_data.ID; % Retain original ID order
[uniqueIDs, ~, idOrder] = unique(idsInOrder, ‘stable’); % Preserve order from input file
% Initialize paramMatrix with zeros
numIDs = length(uniqueIDs);
paramMatrix = zeros(numIDs, length(variantParams)); % Rows for IDs, columns for parameters
% Populate paramMatrix with parameter values based on the input file order
for i = 1:numIDs
% Filter data for the current ID
currentID = uniqueIDs(i);
idData = exp_data(exp_data.ID == currentID, :);
% Assign parameter values (assume these are constant per ID)
paramMatrix(i, 🙂 = [idData.BW(1), idData.SLD(1), idData.HSCR(1), idData.FRAPS(1)];
end
% Observables for the simulation
obs = {‘CAb_plasma’, ‘CADC_plasma’, ‘CPLun_plasma’}; % Observables to track
% Create SimFunction
sfxn = createSimFunction(model, variantParams, obs, dosesForFit,’UseParallel’, true, ‘AutoAccelerate’, true);
% Simulate Using the Parameter Matrix
% Create dose table from dosesForFit
% Simulate the model using the parameter matrix
simData = sfxn(paramMatrix, [], doseTable, time); simfunction and array doses MATLAB Answers — New Questions