Tag Archives: matlab
Optional Arguments in Function as Struct Input
I have a Matlab function with many optional arguments which I want to call with these arguments recursively… This is just a short example, my real code is much more complexe and I don’t want to share it here… I know that this function seems kind of nonesense.
function [out] = calculateHatches(vec, args)
arguments
vec
args.Limit = 0
args.Color = ‘red’
args.Time = ’12:00′
% (and many more argumnts)
end
% some calculations that give me out
out = []
if args.Limit==0
for i=1:10
nargs = args;
nargs.Limit = 1;
% n arguments might change here …
% calculateHatches(vec,’Limit’,nargs.Limit,’Color’,nargs.Color,’Time’,nargs.Time)
nout = calculateHatches(vec,nargs)
out = [out, nout]
end
end
end
However, this won’t work, is there a way to makt it work?
calculateHatches(vec,nargs)
But I have too many optional arguments that change over time of programming too much, that I don’t want to write it into the code. This would mean a lot of administration work.
calculateHatches(vec,’Limit’,nargs.Limit,’Color’,nargs.Color,’Time’,nargs.Time)I have a Matlab function with many optional arguments which I want to call with these arguments recursively… This is just a short example, my real code is much more complexe and I don’t want to share it here… I know that this function seems kind of nonesense.
function [out] = calculateHatches(vec, args)
arguments
vec
args.Limit = 0
args.Color = ‘red’
args.Time = ’12:00′
% (and many more argumnts)
end
% some calculations that give me out
out = []
if args.Limit==0
for i=1:10
nargs = args;
nargs.Limit = 1;
% n arguments might change here …
% calculateHatches(vec,’Limit’,nargs.Limit,’Color’,nargs.Color,’Time’,nargs.Time)
nout = calculateHatches(vec,nargs)
out = [out, nout]
end
end
end
However, this won’t work, is there a way to makt it work?
calculateHatches(vec,nargs)
But I have too many optional arguments that change over time of programming too much, that I don’t want to write it into the code. This would mean a lot of administration work.
calculateHatches(vec,’Limit’,nargs.Limit,’Color’,nargs.Color,’Time’,nargs.Time) I have a Matlab function with many optional arguments which I want to call with these arguments recursively… This is just a short example, my real code is much more complexe and I don’t want to share it here… I know that this function seems kind of nonesense.
function [out] = calculateHatches(vec, args)
arguments
vec
args.Limit = 0
args.Color = ‘red’
args.Time = ’12:00′
% (and many more argumnts)
end
% some calculations that give me out
out = []
if args.Limit==0
for i=1:10
nargs = args;
nargs.Limit = 1;
% n arguments might change here …
% calculateHatches(vec,’Limit’,nargs.Limit,’Color’,nargs.Color,’Time’,nargs.Time)
nout = calculateHatches(vec,nargs)
out = [out, nout]
end
end
end
However, this won’t work, is there a way to makt it work?
calculateHatches(vec,nargs)
But I have too many optional arguments that change over time of programming too much, that I don’t want to write it into the code. This would mean a lot of administration work.
calculateHatches(vec,’Limit’,nargs.Limit,’Color’,nargs.Color,’Time’,nargs.Time) arguments, functions, matlab MATLAB Answers — New Questions
calling a funcion in a loop and replacing input variable with output variable
So I have the funcion:
function y=function_for_Ex6a(x)
% This is a simple function
y=4*(1-cos(x)).^2+x.^3;
end
And I want to use a for loop to run through this function 100 times with an initial input of x=4. I need the output value of y to replace the input value for each interation. Any ideas? Please don’t just send links to other websites. Thanks.So I have the funcion:
function y=function_for_Ex6a(x)
% This is a simple function
y=4*(1-cos(x)).^2+x.^3;
end
And I want to use a for loop to run through this function 100 times with an initial input of x=4. I need the output value of y to replace the input value for each interation. Any ideas? Please don’t just send links to other websites. Thanks. So I have the funcion:
function y=function_for_Ex6a(x)
% This is a simple function
y=4*(1-cos(x)).^2+x.^3;
end
And I want to use a for loop to run through this function 100 times with an initial input of x=4. I need the output value of y to replace the input value for each interation. Any ideas? Please don’t just send links to other websites. Thanks. looping variables MATLAB Answers — New Questions
Log Scaling the variable in boxplot causes display problems
The following error message is produced upon brushing over an existing plot containing frequency data as the data var (frequency as in Hz) and grouping variable for x in a boxplot:
Warning: Error occurred while executing the listener callback for
event EnterObject defined for class
matlab.graphics.interaction.actions.Linger:
Error using
matlab.graphics.axis.dataspace.CartesianDataSpace/TransformPoints
DataSpace or ColorSpace transform method failed
Error in matlab.graphics.internal.transformDataToWorld (line 29)
vertexData = double(hDataSpace.TransformPoints(belowMatrix,iter));
Error in
matlab.graphics.chart.internal.convertDataSpaceCoordsToViewerCoords
(line 44)
vertexData = matlab.graphics.internal.transformDataToWorld(hDataSpace,
belowMatrix, dataspaceData);
Error in
matlab.graphics.interaction.uiaxes.Datatips/lingerEnterCallback
Error in
matlab.graphics.interaction.uiaxes.Datatips>@(o,e)hObj.lingerEnterCallback(o,e)
Error in matlab.graphics.interaction.actions.Linger/enterEvent
Error in matlab.graphics.interaction.actions.Linger/motionCallback
Error in matlab.graphics.interaction.actions.Linger
> In matlab.graphics.interaction.actions.Linger/enterEvent
In matlab.graphics.interaction.actions.Linger/motionCallback
In matlab.graphics.interaction.actions.Linger
The only other Answer I saw pertaining to the transform fail had someone trying to display negative values on a logarithmic scale, but non of my values are negative (although there are NaN values, which must be included for statistical purposed)
Any ideas?The following error message is produced upon brushing over an existing plot containing frequency data as the data var (frequency as in Hz) and grouping variable for x in a boxplot:
Warning: Error occurred while executing the listener callback for
event EnterObject defined for class
matlab.graphics.interaction.actions.Linger:
Error using
matlab.graphics.axis.dataspace.CartesianDataSpace/TransformPoints
DataSpace or ColorSpace transform method failed
Error in matlab.graphics.internal.transformDataToWorld (line 29)
vertexData = double(hDataSpace.TransformPoints(belowMatrix,iter));
Error in
matlab.graphics.chart.internal.convertDataSpaceCoordsToViewerCoords
(line 44)
vertexData = matlab.graphics.internal.transformDataToWorld(hDataSpace,
belowMatrix, dataspaceData);
Error in
matlab.graphics.interaction.uiaxes.Datatips/lingerEnterCallback
Error in
matlab.graphics.interaction.uiaxes.Datatips>@(o,e)hObj.lingerEnterCallback(o,e)
Error in matlab.graphics.interaction.actions.Linger/enterEvent
Error in matlab.graphics.interaction.actions.Linger/motionCallback
Error in matlab.graphics.interaction.actions.Linger
> In matlab.graphics.interaction.actions.Linger/enterEvent
In matlab.graphics.interaction.actions.Linger/motionCallback
In matlab.graphics.interaction.actions.Linger
The only other Answer I saw pertaining to the transform fail had someone trying to display negative values on a logarithmic scale, but non of my values are negative (although there are NaN values, which must be included for statistical purposed)
Any ideas? The following error message is produced upon brushing over an existing plot containing frequency data as the data var (frequency as in Hz) and grouping variable for x in a boxplot:
Warning: Error occurred while executing the listener callback for
event EnterObject defined for class
matlab.graphics.interaction.actions.Linger:
Error using
matlab.graphics.axis.dataspace.CartesianDataSpace/TransformPoints
DataSpace or ColorSpace transform method failed
Error in matlab.graphics.internal.transformDataToWorld (line 29)
vertexData = double(hDataSpace.TransformPoints(belowMatrix,iter));
Error in
matlab.graphics.chart.internal.convertDataSpaceCoordsToViewerCoords
(line 44)
vertexData = matlab.graphics.internal.transformDataToWorld(hDataSpace,
belowMatrix, dataspaceData);
Error in
matlab.graphics.interaction.uiaxes.Datatips/lingerEnterCallback
Error in
matlab.graphics.interaction.uiaxes.Datatips>@(o,e)hObj.lingerEnterCallback(o,e)
Error in matlab.graphics.interaction.actions.Linger/enterEvent
Error in matlab.graphics.interaction.actions.Linger/motionCallback
Error in matlab.graphics.interaction.actions.Linger
> In matlab.graphics.interaction.actions.Linger/enterEvent
In matlab.graphics.interaction.actions.Linger/motionCallback
In matlab.graphics.interaction.actions.Linger
The only other Answer I saw pertaining to the transform fail had someone trying to display negative values on a logarithmic scale, but non of my values are negative (although there are NaN values, which must be included for statistical purposed)
Any ideas? boxplot, log scale, plot brushing MATLAB Answers — New Questions
timeseries forecasting for 10 years ahead ANN
Hi,
i would like to forecast the Cl parameter for 10 years ahead. But keep getting error : Index in position 2 exceeds array bounds. Index must not exceed 1. by the way , when running the code, i have remove the heading, words from the excel. but still getting the error
Error in preparets (line 317)
xi = xx(:,FBS+((1-net.numInputDelays):0));
Error in timee (line 25)
[X,inputStates,layerStates,T] = preparets(net,inputSeries,{},targetSeries);
Please help to check which part that i did wrong.
data = readmatrix ("104CPr.csv");
Input = data(:,1:(end-1));
Target = data(:,end);
X = con2seq(Input)’;
T = con2seq(Target)’;
%% Data Preparation
N = 10; % Multi-step ahead prediction
% Input and target series are divided in two groups of data:
% 1st group: used to train the network
inputSeries = X(1:end-N);
targetSeries = T(1:end-N);
%% Network architecture
delay = 2;
inputDelays = 1:2;
feedbackDelays = 1:2;
hiddenLayerSize = 10;
trainFcn = ‘trainbr’;
% Network Creation
net = narxnet(inputDelays,feedbackDelays,hiddenLayerSize,’open’, trainFcn);
[X,inputStates,layerStates,T] = preparets(net,inputSeries,{},targetSeries);
net.divideParam.trainRatio = 70/100;
net.divideParam.valRatio = 15/100;
net.divideParam.testRatio = 15/100;
[net,Y] = train(net,X,T,inputStates,layerStates);
outputs = net(X,inputStates,layerStates);
errors = gsubtract(T,Y);
performance = perform(net,T,Y);
view(net)
delay = 2;
netc = closeloop(net);
netc.name = [net.name ‘ – Closed Loop’];
view(netc)
[xc,xic,aic,tc] = preparets(netc,inputSeries,{},targetSeries);
yc = netc(xc,xic,aic);
closedLoopPerformance = perform(netc,tc,yc);
% Early Prediction Network
nets = removedelay(net);
nets.name = [net.name ‘ – Predict One Step Ahead’];
view(nets)
[xs,xis,ais,ts] = preparets(nets,inputSeries,{},targetSeries);
ys = nets(xs,xis,ais);
earlyPredictPerformance = perform(nets,ts,ys);
%%5. Multi-step ahead prediction
inputSeriesPred = [inputSeries(end-delay+1:end),inputSeriesVal];
targetSeriesPred = [targetSeries(end-delay+1:end), con2seq(nan(1,N))];
[Xs,Xi,Ai,Ts] = preparets(netc,inputSeriesPred,{},targetSeriesPred);
yPred = netc(Xs,Xi,Ai);
perf = perform(net,yPred,targetSeriesVal);
figure;
plot([cell2mat(targetSeries),nan(1,N);
nan(1,length(targetSeries)),cell2mat(yPred);
nan(1,length(targetSeries)),cell2mat(targetSeriesVal)]’)
legend(‘Original Targets’,’Network Predictions’,’Expected Outputs’);Hi,
i would like to forecast the Cl parameter for 10 years ahead. But keep getting error : Index in position 2 exceeds array bounds. Index must not exceed 1. by the way , when running the code, i have remove the heading, words from the excel. but still getting the error
Error in preparets (line 317)
xi = xx(:,FBS+((1-net.numInputDelays):0));
Error in timee (line 25)
[X,inputStates,layerStates,T] = preparets(net,inputSeries,{},targetSeries);
Please help to check which part that i did wrong.
data = readmatrix ("104CPr.csv");
Input = data(:,1:(end-1));
Target = data(:,end);
X = con2seq(Input)’;
T = con2seq(Target)’;
%% Data Preparation
N = 10; % Multi-step ahead prediction
% Input and target series are divided in two groups of data:
% 1st group: used to train the network
inputSeries = X(1:end-N);
targetSeries = T(1:end-N);
%% Network architecture
delay = 2;
inputDelays = 1:2;
feedbackDelays = 1:2;
hiddenLayerSize = 10;
trainFcn = ‘trainbr’;
% Network Creation
net = narxnet(inputDelays,feedbackDelays,hiddenLayerSize,’open’, trainFcn);
[X,inputStates,layerStates,T] = preparets(net,inputSeries,{},targetSeries);
net.divideParam.trainRatio = 70/100;
net.divideParam.valRatio = 15/100;
net.divideParam.testRatio = 15/100;
[net,Y] = train(net,X,T,inputStates,layerStates);
outputs = net(X,inputStates,layerStates);
errors = gsubtract(T,Y);
performance = perform(net,T,Y);
view(net)
delay = 2;
netc = closeloop(net);
netc.name = [net.name ‘ – Closed Loop’];
view(netc)
[xc,xic,aic,tc] = preparets(netc,inputSeries,{},targetSeries);
yc = netc(xc,xic,aic);
closedLoopPerformance = perform(netc,tc,yc);
% Early Prediction Network
nets = removedelay(net);
nets.name = [net.name ‘ – Predict One Step Ahead’];
view(nets)
[xs,xis,ais,ts] = preparets(nets,inputSeries,{},targetSeries);
ys = nets(xs,xis,ais);
earlyPredictPerformance = perform(nets,ts,ys);
%%5. Multi-step ahead prediction
inputSeriesPred = [inputSeries(end-delay+1:end),inputSeriesVal];
targetSeriesPred = [targetSeries(end-delay+1:end), con2seq(nan(1,N))];
[Xs,Xi,Ai,Ts] = preparets(netc,inputSeriesPred,{},targetSeriesPred);
yPred = netc(Xs,Xi,Ai);
perf = perform(net,yPred,targetSeriesVal);
figure;
plot([cell2mat(targetSeries),nan(1,N);
nan(1,length(targetSeries)),cell2mat(yPred);
nan(1,length(targetSeries)),cell2mat(targetSeriesVal)]’)
legend(‘Original Targets’,’Network Predictions’,’Expected Outputs’); Hi,
i would like to forecast the Cl parameter for 10 years ahead. But keep getting error : Index in position 2 exceeds array bounds. Index must not exceed 1. by the way , when running the code, i have remove the heading, words from the excel. but still getting the error
Error in preparets (line 317)
xi = xx(:,FBS+((1-net.numInputDelays):0));
Error in timee (line 25)
[X,inputStates,layerStates,T] = preparets(net,inputSeries,{},targetSeries);
Please help to check which part that i did wrong.
data = readmatrix ("104CPr.csv");
Input = data(:,1:(end-1));
Target = data(:,end);
X = con2seq(Input)’;
T = con2seq(Target)’;
%% Data Preparation
N = 10; % Multi-step ahead prediction
% Input and target series are divided in two groups of data:
% 1st group: used to train the network
inputSeries = X(1:end-N);
targetSeries = T(1:end-N);
%% Network architecture
delay = 2;
inputDelays = 1:2;
feedbackDelays = 1:2;
hiddenLayerSize = 10;
trainFcn = ‘trainbr’;
% Network Creation
net = narxnet(inputDelays,feedbackDelays,hiddenLayerSize,’open’, trainFcn);
[X,inputStates,layerStates,T] = preparets(net,inputSeries,{},targetSeries);
net.divideParam.trainRatio = 70/100;
net.divideParam.valRatio = 15/100;
net.divideParam.testRatio = 15/100;
[net,Y] = train(net,X,T,inputStates,layerStates);
outputs = net(X,inputStates,layerStates);
errors = gsubtract(T,Y);
performance = perform(net,T,Y);
view(net)
delay = 2;
netc = closeloop(net);
netc.name = [net.name ‘ – Closed Loop’];
view(netc)
[xc,xic,aic,tc] = preparets(netc,inputSeries,{},targetSeries);
yc = netc(xc,xic,aic);
closedLoopPerformance = perform(netc,tc,yc);
% Early Prediction Network
nets = removedelay(net);
nets.name = [net.name ‘ – Predict One Step Ahead’];
view(nets)
[xs,xis,ais,ts] = preparets(nets,inputSeries,{},targetSeries);
ys = nets(xs,xis,ais);
earlyPredictPerformance = perform(nets,ts,ys);
%%5. Multi-step ahead prediction
inputSeriesPred = [inputSeries(end-delay+1:end),inputSeriesVal];
targetSeriesPred = [targetSeries(end-delay+1:end), con2seq(nan(1,N))];
[Xs,Xi,Ai,Ts] = preparets(netc,inputSeriesPred,{},targetSeriesPred);
yPred = netc(Xs,Xi,Ai);
perf = perform(net,yPred,targetSeriesVal);
figure;
plot([cell2mat(targetSeries),nan(1,N);
nan(1,length(targetSeries)),cell2mat(yPred);
nan(1,length(targetSeries)),cell2mat(targetSeriesVal)]’)
legend(‘Original Targets’,’Network Predictions’,’Expected Outputs’); ann, time series MATLAB Answers — New Questions
Error using slmsgviewer.startConnectorIfNotRunning (line 455) Unable to start Matlab connector from Simulink Message Viewer. How to rectify this error in Matlab
When I am running or openeing a new file this error is constantly coming.When I am running or openeing a new file this error is constantly coming. When I am running or openeing a new file this error is constantly coming. slmsgviewer MATLAB Answers — New Questions
possibility to create “Enbaled” subsystem
Hello all,
I need to create the subsystem which needs to be optionally Enable/Disabled before simulation starts but there si no need to be enabled/disable during the simulation …
What are the possiblities to create a such subsystem in Simulink?
Thank you very much for your suggestion.Hello all,
I need to create the subsystem which needs to be optionally Enable/Disabled before simulation starts but there si no need to be enabled/disable during the simulation …
What are the possiblities to create a such subsystem in Simulink?
Thank you very much for your suggestion. Hello all,
I need to create the subsystem which needs to be optionally Enable/Disabled before simulation starts but there si no need to be enabled/disable during the simulation …
What are the possiblities to create a such subsystem in Simulink?
Thank you very much for your suggestion. enabled subsystem MATLAB Answers — New Questions
Finding the Analytical Equation q(t) for an RLC Circuit Using Given V(t) Data
Hello,
I have a numerical time series of voltage V(t) and aim to derive the analytical equation for the charge q(t)q(t)q(t) in an RLC circuit. The relationship between V(t), q(t), and the circuit parameters R, L, and C is governed by the following equation:
V(t) = R * dq/dt + L * d2q/dt2 + (1/C) * q(t)
I have attempted the following steps to estimate the parameters R, L, and C:
q(t); I calculated the charge q(t)as the cumulative integral of V(t), assuming a constant time step (delta_t):
q(t) = sum(V(t) * delta_t)
Computing Derivatives: I computed the first and second derivatives of q(t) numerically using finite differences:
The first derivative (dq/dt): dq/dt = (q(t+delta_t) – q(t)) / delta_t
The second derivative (d2q/dt2): d2q/dt2 = (dq/dt at t+delta_t – dq/dt at t) / delta_t
Creating the Matrix A:I created a matrix A and a vector V to represent the system of equations:
Matrix A has three columns:
The first column contains q(t),
The second column contains dq/dt,
The third column contains d2q/dt2.
Vector V contains the voltage values V(t).
Estimating Parameters:I solved for the parameters R, L, and C using the least-squares method: X = inv(A’ * A) * A’ * V.
Here, X contains the values [1/C, R, L].
Extracting Parameters:I extracted the parameter values from X as follows: C = 1 / X(1), R = X(2), L = X(3)
While I successfully estimated the parameters R, L, and C, I have not been able to derive the analytical equation for q(t). My goal is to find the closed-form expression for q(t) using these parameters and the RLC circuit equation.
How can I derive an analytical expression for q(t)q(t)q(t) from the RLC circuit equation?
Since V(t)V(t)V(t) is provided as numerical data, is there a way to approximate q(t)q(t)q(t) in a closed form?
Are there any MATLAB tools or functions that can handle this type of numerical differential equation?Hello,
I have a numerical time series of voltage V(t) and aim to derive the analytical equation for the charge q(t)q(t)q(t) in an RLC circuit. The relationship between V(t), q(t), and the circuit parameters R, L, and C is governed by the following equation:
V(t) = R * dq/dt + L * d2q/dt2 + (1/C) * q(t)
I have attempted the following steps to estimate the parameters R, L, and C:
q(t); I calculated the charge q(t)as the cumulative integral of V(t), assuming a constant time step (delta_t):
q(t) = sum(V(t) * delta_t)
Computing Derivatives: I computed the first and second derivatives of q(t) numerically using finite differences:
The first derivative (dq/dt): dq/dt = (q(t+delta_t) – q(t)) / delta_t
The second derivative (d2q/dt2): d2q/dt2 = (dq/dt at t+delta_t – dq/dt at t) / delta_t
Creating the Matrix A:I created a matrix A and a vector V to represent the system of equations:
Matrix A has three columns:
The first column contains q(t),
The second column contains dq/dt,
The third column contains d2q/dt2.
Vector V contains the voltage values V(t).
Estimating Parameters:I solved for the parameters R, L, and C using the least-squares method: X = inv(A’ * A) * A’ * V.
Here, X contains the values [1/C, R, L].
Extracting Parameters:I extracted the parameter values from X as follows: C = 1 / X(1), R = X(2), L = X(3)
While I successfully estimated the parameters R, L, and C, I have not been able to derive the analytical equation for q(t). My goal is to find the closed-form expression for q(t) using these parameters and the RLC circuit equation.
How can I derive an analytical expression for q(t)q(t)q(t) from the RLC circuit equation?
Since V(t)V(t)V(t) is provided as numerical data, is there a way to approximate q(t)q(t)q(t) in a closed form?
Are there any MATLAB tools or functions that can handle this type of numerical differential equation? Hello,
I have a numerical time series of voltage V(t) and aim to derive the analytical equation for the charge q(t)q(t)q(t) in an RLC circuit. The relationship between V(t), q(t), and the circuit parameters R, L, and C is governed by the following equation:
V(t) = R * dq/dt + L * d2q/dt2 + (1/C) * q(t)
I have attempted the following steps to estimate the parameters R, L, and C:
q(t); I calculated the charge q(t)as the cumulative integral of V(t), assuming a constant time step (delta_t):
q(t) = sum(V(t) * delta_t)
Computing Derivatives: I computed the first and second derivatives of q(t) numerically using finite differences:
The first derivative (dq/dt): dq/dt = (q(t+delta_t) – q(t)) / delta_t
The second derivative (d2q/dt2): d2q/dt2 = (dq/dt at t+delta_t – dq/dt at t) / delta_t
Creating the Matrix A:I created a matrix A and a vector V to represent the system of equations:
Matrix A has three columns:
The first column contains q(t),
The second column contains dq/dt,
The third column contains d2q/dt2.
Vector V contains the voltage values V(t).
Estimating Parameters:I solved for the parameters R, L, and C using the least-squares method: X = inv(A’ * A) * A’ * V.
Here, X contains the values [1/C, R, L].
Extracting Parameters:I extracted the parameter values from X as follows: C = 1 / X(1), R = X(2), L = X(3)
While I successfully estimated the parameters R, L, and C, I have not been able to derive the analytical equation for q(t). My goal is to find the closed-form expression for q(t) using these parameters and the RLC circuit equation.
How can I derive an analytical expression for q(t)q(t)q(t) from the RLC circuit equation?
Since V(t)V(t)V(t) is provided as numerical data, is there a way to approximate q(t)q(t)q(t) in a closed form?
Are there any MATLAB tools or functions that can handle this type of numerical differential equation? curve fitting, model MATLAB Answers — New Questions
Errors in “28388 TCP Send” modue code generation
Hello, I am using Simulink to generate C code and burn it to my DSP28388 to test Ethernet. The test program and code generation result are shown in the figure. It can be seen that the code generation result reported errors, the reason is that some structure is not defined, thank you very much for providing me with some ideas to solve the problem.Hello, I am using Simulink to generate C code and burn it to my DSP28388 to test Ethernet. The test program and code generation result are shown in the figure. It can be seen that the code generation result reported errors, the reason is that some structure is not defined, thank you very much for providing me with some ideas to solve the problem. Hello, I am using Simulink to generate C code and burn it to my DSP28388 to test Ethernet. The test program and code generation result are shown in the figure. It can be seen that the code generation result reported errors, the reason is that some structure is not defined, thank you very much for providing me with some ideas to solve the problem. code generation, 28388, simulink MATLAB Answers — New Questions
C Caller block *.dll error
I am getting the error failed to load custom code library c:Armourydislibslprj_slcchpQwdVE1r6v1WgDG7ExooD_cclib.dll
Im not exactly sure how to resolve this issue – The library I am trying to call is not named such gobbledygook characters but matlab appears to have a mind of its own.
Actual C library is indicated as below along with the relavent header files.I am getting the error failed to load custom code library c:Armourydislibslprj_slcchpQwdVE1r6v1WgDG7ExooD_cclib.dll
Im not exactly sure how to resolve this issue – The library I am trying to call is not named such gobbledygook characters but matlab appears to have a mind of its own.
Actual C library is indicated as below along with the relavent header files. I am getting the error failed to load custom code library c:Armourydislibslprj_slcchpQwdVE1r6v1WgDG7ExooD_cclib.dll
Im not exactly sure how to resolve this issue – The library I am trying to call is not named such gobbledygook characters but matlab appears to have a mind of its own.
Actual C library is indicated as below along with the relavent header files. dll calls, simulink, matlab MATLAB Answers — New Questions
Reinforcement Learning Episode Manager not stopping training in R2022a
Hi,
I have updated my install from R2021a to R2022a. Using the RL toolbox when running the episode manager with the following code in R2022a, when I go to stop the training early, via "Stop Training" in episode manager, the training does not stop, it seems the only way to actual stop the current training early is via the "stop" button on the "run" tab in live editor. Has anyone encounered this in R2022a? and will the agent buffer still be saved via just stopping the script rather than stopping training via EM?
T = 0.066;
maxepisodes = 100;
maxsteps = ceil(T/Ts_agent)
trainingOpts = rlTrainingOptions(…
‘MaxEpisodes’,maxepisodes, …
‘MaxStepsPerEpisode’,maxsteps, …
‘StopTrainingCriteria’,"EpisodeCount",…
‘StopTrainingValue’,maxepisodes,…
‘ScoreAveragingWindowLength’,100,…
‘SaveAgentCriteria’,"EpisodeCount",…
‘SaveAgentValue’,maxepisodes,…
‘SaveAgentDirectory’,"savedAgents",…
‘Verbose’,true,…
‘Plots’,’training-progress’)
Cheers,
PatrickHi,
I have updated my install from R2021a to R2022a. Using the RL toolbox when running the episode manager with the following code in R2022a, when I go to stop the training early, via "Stop Training" in episode manager, the training does not stop, it seems the only way to actual stop the current training early is via the "stop" button on the "run" tab in live editor. Has anyone encounered this in R2022a? and will the agent buffer still be saved via just stopping the script rather than stopping training via EM?
T = 0.066;
maxepisodes = 100;
maxsteps = ceil(T/Ts_agent)
trainingOpts = rlTrainingOptions(…
‘MaxEpisodes’,maxepisodes, …
‘MaxStepsPerEpisode’,maxsteps, …
‘StopTrainingCriteria’,"EpisodeCount",…
‘StopTrainingValue’,maxepisodes,…
‘ScoreAveragingWindowLength’,100,…
‘SaveAgentCriteria’,"EpisodeCount",…
‘SaveAgentValue’,maxepisodes,…
‘SaveAgentDirectory’,"savedAgents",…
‘Verbose’,true,…
‘Plots’,’training-progress’)
Cheers,
Patrick Hi,
I have updated my install from R2021a to R2022a. Using the RL toolbox when running the episode manager with the following code in R2022a, when I go to stop the training early, via "Stop Training" in episode manager, the training does not stop, it seems the only way to actual stop the current training early is via the "stop" button on the "run" tab in live editor. Has anyone encounered this in R2022a? and will the agent buffer still be saved via just stopping the script rather than stopping training via EM?
T = 0.066;
maxepisodes = 100;
maxsteps = ceil(T/Ts_agent)
trainingOpts = rlTrainingOptions(…
‘MaxEpisodes’,maxepisodes, …
‘MaxStepsPerEpisode’,maxsteps, …
‘StopTrainingCriteria’,"EpisodeCount",…
‘StopTrainingValue’,maxepisodes,…
‘ScoreAveragingWindowLength’,100,…
‘SaveAgentCriteria’,"EpisodeCount",…
‘SaveAgentValue’,maxepisodes,…
‘SaveAgentDirectory’,"savedAgents",…
‘Verbose’,true,…
‘Plots’,’training-progress’)
Cheers,
Patrick reinforcement learning MATLAB Answers — New Questions
Object detection and tracking using lidar point cloud data
Hello All,
I am working on object detection and tracking using veloyne lidar point cloud data (PCAP) without using Deep learning. I am a beginner, please guide me how to start with.
Thanks in advanceHello All,
I am working on object detection and tracking using veloyne lidar point cloud data (PCAP) without using Deep learning. I am a beginner, please guide me how to start with.
Thanks in advance Hello All,
I am working on object detection and tracking using veloyne lidar point cloud data (PCAP) without using Deep learning. I am a beginner, please guide me how to start with.
Thanks in advance lidar, velodyne, point cloud data, object detection, object tracking, 3d, pcd, lidar data processing, point cloud application, point cloud MATLAB Answers — New Questions
Global declaration not resolved to a Data Store Memory block registered via the Ports and Data Manager.
i was trying to make a predictive code algorithm however i recieve the same error every time .
code below.
function [Sa,Sb,Sc] = control(T_ref,sflux_ref,wm,i_meas)
% Variables defined in the parameters file
global Ts Rs Lr Lm Ls p tr kr r_sigma t_sigma lambda v states
persistent x_opt Fs %Fsp1 Tp1 g
if isempty(x_opt), x_opt = 1; end
if isempty(Fs), Fs = 0 + 0i*1; end
T_ref = T_ref(1) + 1j*T_ref(2);
sflux_ref = sflux_ref(1) + 1j*sflux(2);
i_meas = i_meas(1) + 1j*i_meas(2);
wm = wm(1) + 1j*wm(2);
% Stator flux estimate
Fs = Fs + Ts*(v(x_opt) – Rs*i_meas);
% Rotor flux estimate
Fr = Lr/Lm*Fs+i_meas*(Lm-Lr*Ls/Lm);
g_opt = 1e10;
for i = 1:8
% i-th voltage vector for current prediction
v_o1 = v(i);
% Stator flux prediction at instant k+1
Fsp1 = Fs + Ts*v_o1 – Rs*Ts*i_meas;
% Stator current prediction at instant k+1
Isp1 = (1+Ts/t_sigma)*i_meas+Ts/(t_sigma+Ts)*(1/r_sigma*((kr/tr-kr*1i*wm)*Fr+v_o1));
% Torque prediction at instant k+1
Tp1 = 3/2*p*imag(conj(Fsp1)*Isp1);
% Cost function
g = abs(T_ref – Tp1)+ lambda*abs(sflux_ref-abs(Fsp1));
if (g<g_opt)
g_opt = g;
x_opt = i;
end
endi was trying to make a predictive code algorithm however i recieve the same error every time .
code below.
function [Sa,Sb,Sc] = control(T_ref,sflux_ref,wm,i_meas)
% Variables defined in the parameters file
global Ts Rs Lr Lm Ls p tr kr r_sigma t_sigma lambda v states
persistent x_opt Fs %Fsp1 Tp1 g
if isempty(x_opt), x_opt = 1; end
if isempty(Fs), Fs = 0 + 0i*1; end
T_ref = T_ref(1) + 1j*T_ref(2);
sflux_ref = sflux_ref(1) + 1j*sflux(2);
i_meas = i_meas(1) + 1j*i_meas(2);
wm = wm(1) + 1j*wm(2);
% Stator flux estimate
Fs = Fs + Ts*(v(x_opt) – Rs*i_meas);
% Rotor flux estimate
Fr = Lr/Lm*Fs+i_meas*(Lm-Lr*Ls/Lm);
g_opt = 1e10;
for i = 1:8
% i-th voltage vector for current prediction
v_o1 = v(i);
% Stator flux prediction at instant k+1
Fsp1 = Fs + Ts*v_o1 – Rs*Ts*i_meas;
% Stator current prediction at instant k+1
Isp1 = (1+Ts/t_sigma)*i_meas+Ts/(t_sigma+Ts)*(1/r_sigma*((kr/tr-kr*1i*wm)*Fr+v_o1));
% Torque prediction at instant k+1
Tp1 = 3/2*p*imag(conj(Fsp1)*Isp1);
% Cost function
g = abs(T_ref – Tp1)+ lambda*abs(sflux_ref-abs(Fsp1));
if (g<g_opt)
g_opt = g;
x_opt = i;
end
end i was trying to make a predictive code algorithm however i recieve the same error every time .
code below.
function [Sa,Sb,Sc] = control(T_ref,sflux_ref,wm,i_meas)
% Variables defined in the parameters file
global Ts Rs Lr Lm Ls p tr kr r_sigma t_sigma lambda v states
persistent x_opt Fs %Fsp1 Tp1 g
if isempty(x_opt), x_opt = 1; end
if isempty(Fs), Fs = 0 + 0i*1; end
T_ref = T_ref(1) + 1j*T_ref(2);
sflux_ref = sflux_ref(1) + 1j*sflux(2);
i_meas = i_meas(1) + 1j*i_meas(2);
wm = wm(1) + 1j*wm(2);
% Stator flux estimate
Fs = Fs + Ts*(v(x_opt) – Rs*i_meas);
% Rotor flux estimate
Fr = Lr/Lm*Fs+i_meas*(Lm-Lr*Ls/Lm);
g_opt = 1e10;
for i = 1:8
% i-th voltage vector for current prediction
v_o1 = v(i);
% Stator flux prediction at instant k+1
Fsp1 = Fs + Ts*v_o1 – Rs*Ts*i_meas;
% Stator current prediction at instant k+1
Isp1 = (1+Ts/t_sigma)*i_meas+Ts/(t_sigma+Ts)*(1/r_sigma*((kr/tr-kr*1i*wm)*Fr+v_o1));
% Torque prediction at instant k+1
Tp1 = 3/2*p*imag(conj(Fsp1)*Isp1);
% Cost function
g = abs(T_ref – Tp1)+ lambda*abs(sflux_ref-abs(Fsp1));
if (g<g_opt)
g_opt = g;
x_opt = i;
end
end ports, data manager, store memory MATLAB Answers — New Questions
CVE-2024-7264 mitigation document Matlab R2021b and below
Is there any document from Mathworks adressing CVE-2024-7264 mitigations or just plain "does not affect Mathworks Matlab products"Is there any document from Mathworks adressing CVE-2024-7264 mitigations or just plain "does not affect Mathworks Matlab products" Is there any document from Mathworks adressing CVE-2024-7264 mitigations or just plain "does not affect Mathworks Matlab products" cve, acas MATLAB Answers — New Questions
PMSM Motor is not responding using TI F28379d LaunchPad with a BOOSTXL-3PhGaNInv booster pack
Motor not responding after dumping and run the code in TI F28379d LaunchPad using BOOSTXL-3PhGaNInv booster pack also chacked the PMW pin no 37-40 but did not get any signal. Is there any way to observe the PWM signal from Lunchpad without using the motor to validate the code generation is working.Motor not responding after dumping and run the code in TI F28379d LaunchPad using BOOSTXL-3PhGaNInv booster pack also chacked the PMW pin no 37-40 but did not get any signal. Is there any way to observe the PWM signal from Lunchpad without using the motor to validate the code generation is working. Motor not responding after dumping and run the code in TI F28379d LaunchPad using BOOSTXL-3PhGaNInv booster pack also chacked the PMW pin no 37-40 but did not get any signal. Is there any way to observe the PWM signal from Lunchpad without using the motor to validate the code generation is working. pmsm, motor control, ti f28379d launchpad, boostxl-3phganinv MATLAB Answers — New Questions
GPSDev Function Unrecognized- ESP32 and GT-U7
When I run the first two code segments I get NaN/NaT or just no output but no error and when I the last two I get the error "Unrecognized function or variable ‘gpsdev’. I have tested the set up using the arduinoIDE and I get proper GPS output through that. I have also checked the baud rate, the communication between the esp32 and computer and that there is proper physical connection. Do you know why I am getting this error/no output? What is the best method to trouble shoot these errors? Any tips would be greatly appreciated. Thank you.
1.
a = arduino(‘COM3′,’ESP32-WROOM-DevKitC’,’Libraries’,’Serial’)
gps = gpsdev(a)
gpsData = gps.read;
latitude = gpsData.LLA(1);
longitude = gpsData.LLA(2);
gpsTime = gpsData.GPSReceiverTime;
% GPS returns UTC datetime. Convert it into system time zone.
gpsTime.TimeZone = ‘local’;
if(~isnan(latitude) && ~isnan(longitude))
% plot the position in geographic coordinates
fig = geoplot(latitude,longitude,’Marker’,"o",’MarkerSize’,6,’Color’,’red’,’MarkerFaceColor’,’red’);
% Sets the latitude and longitude limits of the base Map
geolimits([latitude-0.05,latitude+0.05],[longitude-0.05,longitude+0.05]) ;
% Selects the basemap
geobasemap streets;
timeString = strcat("Timestamp: ",string(gpsTime));
2.
a = arduino(‘COM3′,’ESP32-WROOM-DevKitC’,’Libraries’,’Serial’)
gps = gpsdev(a)
[tt,overruns] = read(gps)
3.
gps = gpsdev(‘COM4′,’OutputFormat’,"timetable")
[tt,overruns] = read(gps)
release(gps)
gps.SamplesPerRead = 2;
read(gps)
4.
s = serialport(‘COM3’, 9600)
gps = gpsdev(s,’OutputFormat’,"matrix")
[lla,speed,course,dops,gpsReceiverTime,timestamp,overruns] = read(gps)
%delete(gps);
%clear gps;
%clear a;
*These codes are adapted from MATWORKS references either by staff or other usersWhen I run the first two code segments I get NaN/NaT or just no output but no error and when I the last two I get the error "Unrecognized function or variable ‘gpsdev’. I have tested the set up using the arduinoIDE and I get proper GPS output through that. I have also checked the baud rate, the communication between the esp32 and computer and that there is proper physical connection. Do you know why I am getting this error/no output? What is the best method to trouble shoot these errors? Any tips would be greatly appreciated. Thank you.
1.
a = arduino(‘COM3′,’ESP32-WROOM-DevKitC’,’Libraries’,’Serial’)
gps = gpsdev(a)
gpsData = gps.read;
latitude = gpsData.LLA(1);
longitude = gpsData.LLA(2);
gpsTime = gpsData.GPSReceiverTime;
% GPS returns UTC datetime. Convert it into system time zone.
gpsTime.TimeZone = ‘local’;
if(~isnan(latitude) && ~isnan(longitude))
% plot the position in geographic coordinates
fig = geoplot(latitude,longitude,’Marker’,"o",’MarkerSize’,6,’Color’,’red’,’MarkerFaceColor’,’red’);
% Sets the latitude and longitude limits of the base Map
geolimits([latitude-0.05,latitude+0.05],[longitude-0.05,longitude+0.05]) ;
% Selects the basemap
geobasemap streets;
timeString = strcat("Timestamp: ",string(gpsTime));
2.
a = arduino(‘COM3′,’ESP32-WROOM-DevKitC’,’Libraries’,’Serial’)
gps = gpsdev(a)
[tt,overruns] = read(gps)
3.
gps = gpsdev(‘COM4′,’OutputFormat’,"timetable")
[tt,overruns] = read(gps)
release(gps)
gps.SamplesPerRead = 2;
read(gps)
4.
s = serialport(‘COM3’, 9600)
gps = gpsdev(s,’OutputFormat’,"matrix")
[lla,speed,course,dops,gpsReceiverTime,timestamp,overruns] = read(gps)
%delete(gps);
%clear gps;
%clear a;
*These codes are adapted from MATWORKS references either by staff or other users When I run the first two code segments I get NaN/NaT or just no output but no error and when I the last two I get the error "Unrecognized function or variable ‘gpsdev’. I have tested the set up using the arduinoIDE and I get proper GPS output through that. I have also checked the baud rate, the communication between the esp32 and computer and that there is proper physical connection. Do you know why I am getting this error/no output? What is the best method to trouble shoot these errors? Any tips would be greatly appreciated. Thank you.
1.
a = arduino(‘COM3′,’ESP32-WROOM-DevKitC’,’Libraries’,’Serial’)
gps = gpsdev(a)
gpsData = gps.read;
latitude = gpsData.LLA(1);
longitude = gpsData.LLA(2);
gpsTime = gpsData.GPSReceiverTime;
% GPS returns UTC datetime. Convert it into system time zone.
gpsTime.TimeZone = ‘local’;
if(~isnan(latitude) && ~isnan(longitude))
% plot the position in geographic coordinates
fig = geoplot(latitude,longitude,’Marker’,"o",’MarkerSize’,6,’Color’,’red’,’MarkerFaceColor’,’red’);
% Sets the latitude and longitude limits of the base Map
geolimits([latitude-0.05,latitude+0.05],[longitude-0.05,longitude+0.05]) ;
% Selects the basemap
geobasemap streets;
timeString = strcat("Timestamp: ",string(gpsTime));
2.
a = arduino(‘COM3′,’ESP32-WROOM-DevKitC’,’Libraries’,’Serial’)
gps = gpsdev(a)
[tt,overruns] = read(gps)
3.
gps = gpsdev(‘COM4′,’OutputFormat’,"timetable")
[tt,overruns] = read(gps)
release(gps)
gps.SamplesPerRead = 2;
read(gps)
4.
s = serialport(‘COM3’, 9600)
gps = gpsdev(s,’OutputFormat’,"matrix")
[lla,speed,course,dops,gpsReceiverTime,timestamp,overruns] = read(gps)
%delete(gps);
%clear gps;
%clear a;
*These codes are adapted from MATWORKS references either by staff or other users gps, esp32, gpsdev, gt-u7, serialport, read() MATLAB Answers — New Questions
unable to read GR-401 gps data with gpsdev or gpsReceiver
I have Navisys GR-401 gps receiver which works just fine with SiRF-Live. I know it uses COM3, but I am unable to read data with matlab.
with:
s = serialport(‘COM3’,9600);
gps = gpsdev(s,’OutputFormat’,"timetable");
and
read(gps)
gives error:
Obtaining the required NMEA sentences (RMC, GGA and GSA) is taking longer than expected. Verify the physical connection of the GPS device to the specified serial port and the configuration of the GPS device.
also
gps = gpsReceiver(‘COM3’);
and
read(gps)
gives error
Warning: Unsuccessful read: The input buffer was filled before the Terminator was reached.
‘serial’ unable to read all requested data. For more information on possible reasons, see Serial Read Warnings.
any ideas what is the culprit here?I have Navisys GR-401 gps receiver which works just fine with SiRF-Live. I know it uses COM3, but I am unable to read data with matlab.
with:
s = serialport(‘COM3’,9600);
gps = gpsdev(s,’OutputFormat’,"timetable");
and
read(gps)
gives error:
Obtaining the required NMEA sentences (RMC, GGA and GSA) is taking longer than expected. Verify the physical connection of the GPS device to the specified serial port and the configuration of the GPS device.
also
gps = gpsReceiver(‘COM3’);
and
read(gps)
gives error
Warning: Unsuccessful read: The input buffer was filled before the Terminator was reached.
‘serial’ unable to read all requested data. For more information on possible reasons, see Serial Read Warnings.
any ideas what is the culprit here? I have Navisys GR-401 gps receiver which works just fine with SiRF-Live. I know it uses COM3, but I am unable to read data with matlab.
with:
s = serialport(‘COM3’,9600);
gps = gpsdev(s,’OutputFormat’,"timetable");
and
read(gps)
gives error:
Obtaining the required NMEA sentences (RMC, GGA and GSA) is taking longer than expected. Verify the physical connection of the GPS device to the specified serial port and the configuration of the GPS device.
also
gps = gpsReceiver(‘COM3’);
and
read(gps)
gives error
Warning: Unsuccessful read: The input buffer was filled before the Terminator was reached.
‘serial’ unable to read all requested data. For more information on possible reasons, see Serial Read Warnings.
any ideas what is the culprit here? gps, gr-401 MATLAB Answers — New Questions
delete zeros rows and columns
I try this code to delete all row and column with all zero values in them. It simply works for deleting the columns with all zero values abut it does not work for rows! Can anybody please help me?
data=[0 0 0 0 0 0 0 0; 0 0 2 3 4 0 1 0; 0 0 1 2 3 0 0 0];
data( all( ~any( data), 2 ), : ) = []; % removes all rows with all zero
data( :, all( ~any( data ), 1 ) ) = []; % and columns
I mean the first line (% removes all rows with all zero) does not work!I try this code to delete all row and column with all zero values in them. It simply works for deleting the columns with all zero values abut it does not work for rows! Can anybody please help me?
data=[0 0 0 0 0 0 0 0; 0 0 2 3 4 0 1 0; 0 0 1 2 3 0 0 0];
data( all( ~any( data), 2 ), : ) = []; % removes all rows with all zero
data( :, all( ~any( data ), 1 ) ) = []; % and columns
I mean the first line (% removes all rows with all zero) does not work! I try this code to delete all row and column with all zero values in them. It simply works for deleting the columns with all zero values abut it does not work for rows! Can anybody please help me?
data=[0 0 0 0 0 0 0 0; 0 0 2 3 4 0 1 0; 0 0 1 2 3 0 0 0];
data( all( ~any( data), 2 ), : ) = []; % removes all rows with all zero
data( :, all( ~any( data ), 1 ) ) = []; % and columns
I mean the first line (% removes all rows with all zero) does not work! matrix, array, zeros, delete MATLAB Answers — New Questions
How to find out if a logical array is all zeros?
I have a logical array that is 100×1 logical. sometimes it contains a mix of numbers and sometimes it contains all 0s.
How would i go about making an if statement that checks to see if all 100×1 is 0s and if all 0s = do something
I thought i was correct in using any command but im not sure that works correctly for me..
Thanks!I have a logical array that is 100×1 logical. sometimes it contains a mix of numbers and sometimes it contains all 0s.
How would i go about making an if statement that checks to see if all 100×1 is 0s and if all 0s = do something
I thought i was correct in using any command but im not sure that works correctly for me..
Thanks! I have a logical array that is 100×1 logical. sometimes it contains a mix of numbers and sometimes it contains all 0s.
How would i go about making an if statement that checks to see if all 100×1 is 0s and if all 0s = do something
I thought i was correct in using any command but im not sure that works correctly for me..
Thanks! array, logic, if statement MATLAB Answers — New Questions
I need help in this issue. it’s been long time getting this error.
Unable to perform assignment because the left and right sides have a different number of elements.
Error in EM_RTSS>kalman_filter (line 144)
Z_estimates(n) = Z_est; % Store state estimate
Error in EM_RTSS (line 40)
[Z_estimates, P_estimates] = kalman_filter(A, B, S, sigma, mu1, S1, temp);Unable to perform assignment because the left and right sides have a different number of elements.
Error in EM_RTSS>kalman_filter (line 144)
Z_estimates(n) = Z_est; % Store state estimate
Error in EM_RTSS (line 40)
[Z_estimates, P_estimates] = kalman_filter(A, B, S, sigma, mu1, S1, temp); Unable to perform assignment because the left and right sides have a different number of elements.
Error in EM_RTSS>kalman_filter (line 144)
Z_estimates(n) = Z_est; % Store state estimate
Error in EM_RTSS (line 40)
[Z_estimates, P_estimates] = kalman_filter(A, B, S, sigma, mu1, S1, temp); kalman filter MATLAB Answers — New Questions
How to place random CNT’s in a box domain with random curves and orientation ?
Hi all, what i want is a code that can actually place random carbon nanotubes in a cube domain so that i can use it in comsol livelink MATLAB bellow is a code that puts spheres which i found in this forum i need it based on that.. :
function P = GetRandomSpheres(nWant, Width, Radius)
% INPUT:
% nWant: Number of spheres
% Width: Dimension of 3d box as [1 x 3] double vector
% Radius: Radius of spheres
% OUTPUT:
% P: [nWant x 3] matrix, centers
P = zeros(nWant, 3);
R2 = (2 * Radius) ^ 2; % Squared once instead of SQRT each time
W = Width – 2 * Radius; % Avoid interesction with borders
iLoop = 1; % Security break to avoid infinite loop
nValid = 0;
while nValid < nWant && iLoop < 1e12
newP = rand(1, 3) .* W + Radius;
% Auto-expanding, need Matlab >= R2016b. For earlier versions:
% Dist2 = sum(bsxfun(@minus, P(1:nValid, :), newP) .^ 2, 2);
Dist2 = sum((P(1:nValid, 🙂 – newP) .^ 2, 2);
if all(Dist2 > R2)
% Success: The new point does not touch existing sheres:
nValid = nValid + 1; % Append this point
P(nValid, 🙂 = newP;
end
iLoop = iLoop + 1;
end
% Stop if too few values have been found:
if nValid < nWant
error(‘Cannot find wanted number of points in %d iterations.’, iLoop)
end
end
n = 100;
R = 5;
P = GetRandomSpheres(n, [100, 100, 100], R);
figure
axes(‘NextPlot’, ‘add’, …
‘XLim’, [0, 100], ‘YLim’, [0, 100], ‘ZLim’, [0, 100]);
view(3);
[X, Y, Z] = sphere();
for k = 1:n
surf(X * R + P(k, 1), Y * R + P(k, 2), Z * R + P(k, 3));
endHi all, what i want is a code that can actually place random carbon nanotubes in a cube domain so that i can use it in comsol livelink MATLAB bellow is a code that puts spheres which i found in this forum i need it based on that.. :
function P = GetRandomSpheres(nWant, Width, Radius)
% INPUT:
% nWant: Number of spheres
% Width: Dimension of 3d box as [1 x 3] double vector
% Radius: Radius of spheres
% OUTPUT:
% P: [nWant x 3] matrix, centers
P = zeros(nWant, 3);
R2 = (2 * Radius) ^ 2; % Squared once instead of SQRT each time
W = Width – 2 * Radius; % Avoid interesction with borders
iLoop = 1; % Security break to avoid infinite loop
nValid = 0;
while nValid < nWant && iLoop < 1e12
newP = rand(1, 3) .* W + Radius;
% Auto-expanding, need Matlab >= R2016b. For earlier versions:
% Dist2 = sum(bsxfun(@minus, P(1:nValid, :), newP) .^ 2, 2);
Dist2 = sum((P(1:nValid, 🙂 – newP) .^ 2, 2);
if all(Dist2 > R2)
% Success: The new point does not touch existing sheres:
nValid = nValid + 1; % Append this point
P(nValid, 🙂 = newP;
end
iLoop = iLoop + 1;
end
% Stop if too few values have been found:
if nValid < nWant
error(‘Cannot find wanted number of points in %d iterations.’, iLoop)
end
end
n = 100;
R = 5;
P = GetRandomSpheres(n, [100, 100, 100], R);
figure
axes(‘NextPlot’, ‘add’, …
‘XLim’, [0, 100], ‘YLim’, [0, 100], ‘ZLim’, [0, 100]);
view(3);
[X, Y, Z] = sphere();
for k = 1:n
surf(X * R + P(k, 1), Y * R + P(k, 2), Z * R + P(k, 3));
end Hi all, what i want is a code that can actually place random carbon nanotubes in a cube domain so that i can use it in comsol livelink MATLAB bellow is a code that puts spheres which i found in this forum i need it based on that.. :
function P = GetRandomSpheres(nWant, Width, Radius)
% INPUT:
% nWant: Number of spheres
% Width: Dimension of 3d box as [1 x 3] double vector
% Radius: Radius of spheres
% OUTPUT:
% P: [nWant x 3] matrix, centers
P = zeros(nWant, 3);
R2 = (2 * Radius) ^ 2; % Squared once instead of SQRT each time
W = Width – 2 * Radius; % Avoid interesction with borders
iLoop = 1; % Security break to avoid infinite loop
nValid = 0;
while nValid < nWant && iLoop < 1e12
newP = rand(1, 3) .* W + Radius;
% Auto-expanding, need Matlab >= R2016b. For earlier versions:
% Dist2 = sum(bsxfun(@minus, P(1:nValid, :), newP) .^ 2, 2);
Dist2 = sum((P(1:nValid, 🙂 – newP) .^ 2, 2);
if all(Dist2 > R2)
% Success: The new point does not touch existing sheres:
nValid = nValid + 1; % Append this point
P(nValid, 🙂 = newP;
end
iLoop = iLoop + 1;
end
% Stop if too few values have been found:
if nValid < nWant
error(‘Cannot find wanted number of points in %d iterations.’, iLoop)
end
end
n = 100;
R = 5;
P = GetRandomSpheres(n, [100, 100, 100], R);
figure
axes(‘NextPlot’, ‘add’, …
‘XLim’, [0, 100], ‘YLim’, [0, 100], ‘ZLim’, [0, 100]);
view(3);
[X, Y, Z] = sphere();
for k = 1:n
surf(X * R + P(k, 1), Y * R + P(k, 2), Z * R + P(k, 3));
end matlab, random, java, comsol, geometry, matlab code, programming MATLAB Answers — New Questions