Mrinal Anand
Followers: 0 Following: 0
Feeds
已回答
Create an Array of different Size Structs that have the same information
You can create a struct of structs and use loops to access the inner structs' fields. Here is an example using the code sample t...
Create an Array of different Size Structs that have the same information
You can create a struct of structs and use loops to access the inner structs' fields. Here is an example using the code sample t...
1 year 前 | 0
已回答
Import values having different units in matlab
Matlab plotting functions assume that the plotting data is given in Cartesian coordinates by default. So you need to convert you...
Import values having different units in matlab
Matlab plotting functions assume that the plotting data is given in Cartesian coordinates by default. So you need to convert you...
1 year 前 | 0
已回答
How to concatenate vectors indexed with a for loop?
As per my understanding you want your above code to run in a loop with "trialNum" ranging from 1 to the desired number of iterat...
How to concatenate vectors indexed with a for loop?
As per my understanding you want your above code to run in a loop with "trialNum" ranging from 1 to the desired number of iterat...
1 year 前 | 0
已回答
Getting recent files in Matlab
You can check your computer's recycle bin or trash folder to see if the files were accidentally deleted and are recoverable from...
Getting recent files in Matlab
You can check your computer's recycle bin or trash folder to see if the files were accidentally deleted and are recoverable from...
1 year 前 | 0
已回答
how to connect existing matlab code (.m) file with app designer in matlab?
As Rik mentioned, you can simply call functions from .m files in the App Designer callbacks/functions. Ensure that the App Desig...
how to connect existing matlab code (.m) file with app designer in matlab?
As Rik mentioned, you can simply call functions from .m files in the App Designer callbacks/functions. Ensure that the App Desig...
1 year 前 | 0
已回答
how can i combine 3 dimensional data and use pca function?
You can try changing the range of longitudes in the m_proj function to include a longer range of longitudinal values: m_proj('l...
how can i combine 3 dimensional data and use pca function?
You can try changing the range of longitudes in the m_proj function to include a longer range of longitudinal values: m_proj('l...
1 year 前 | 0
已回答
I get complex numbers while using "acosd" function
You are getting a complex number because the acosd() function is only defined for values in the range of [-1, 1]. If the functio...
I get complex numbers while using "acosd" function
You are getting a complex number because the acosd() function is only defined for values in the range of [-1, 1]. If the functio...
1 year 前 | 1
已回答
if condition in the case where char is empty
You can use the isempty() function in Matlab to accomplish your task: name = ''; % empty char variable if isempty(name) n...
if condition in the case where char is empty
You can use the isempty() function in Matlab to accomplish your task: name = ''; % empty char variable if isempty(name) n...
1 year 前 | 1
| 已接受
已回答
Index in position 1 is invalid. Array indices must be positive integers or logical values.
The error is because you have indexed t and y without initializing them as arrays: t(1)=0; y(1)=0; Your for loop required 25 ...
Index in position 1 is invalid. Array indices must be positive integers or logical values.
The error is because you have indexed t and y without initializing them as arrays: t(1)=0; y(1)=0; Your for loop required 25 ...
1 year 前 | 0
已回答
I can not find Model Linearizer under Control Systems
The Control Systems Add-on does not have Model Linearizer. It is a part of the Simulink Control Design Add-on. You can have a lo...
I can not find Model Linearizer under Control Systems
The Control Systems Add-on does not have Model Linearizer. It is a part of the Simulink Control Design Add-on. You can have a lo...
1 year 前 | 0
已回答
How can I model large automata?
You can use Stateflow Toolbox in Simulink to model the automata. However, modeling a large automata in MATLAB and Stateflow can ...
How can I model large automata?
You can use Stateflow Toolbox in Simulink to model the automata. However, modeling a large automata in MATLAB and Stateflow can ...
1 year 前 | 0
已回答
Does the Matlab 2023a support the NVIDIA RTX 4090-24G GPU device?
Yes, the 2023a version does support RTX 4090 GPU. You can have a look at the GPU Computing Requirements documentation to get mor...
Does the Matlab 2023a support the NVIDIA RTX 4090-24G GPU device?
Yes, the 2023a version does support RTX 4090 GPU. You can have a look at the GPU Computing Requirements documentation to get mor...
1 year 前 | 0
| 已接受
已回答
Why am I getting two different data arrays with the same set of data?
I tried running your sample testing script and it says the datasets have incompatible sizes. This could be because you are runni...
Why am I getting two different data arrays with the same set of data?
I tried running your sample testing script and it says the datasets have incompatible sizes. This could be because you are runni...
1 year 前 | 1
| 已接受
已回答
Error in the program at startup
The error is because of the line: yy = f Since f is a function and you want to plot it f(xx), the line should be: yy = f(xx) ...
Error in the program at startup
The error is because of the line: yy = f Since f is a function and you want to plot it f(xx), the line should be: yy = f(xx) ...
1 year 前 | 0
已回答
Vertical gauge in Simulink
The Vertical Gauge does not support multiple signals, but you can use a Multi-Port Switch block with multiple input signals to s...
Vertical gauge in Simulink
The Vertical Gauge does not support multiple signals, but you can use a Multi-Port Switch block with multiple input signals to s...
1 year 前 | 0
| 已接受