![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/32989952_1707911108435_DEF.jpg)
Programming Languages:
Python, C++, C, Java, Javascript, R, MATLAB, Ruby, SQL, Perl
Spoken Languages:
English
Pronouns:
He/him
Python, C++, C, Java, Javascript, R, MATLAB, Ruby, SQL, Perl
Spoken Languages:
English
Pronouns:
He/him
統計
MATLAB Answers
0 質問
118 回答
ランク
of 157,687
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
Why do i receive this error? (line 11)
Hi @Zakhar The error you're encountering is due to the function "u0" not being defined in your code. MATLAB is unable to find "...
Why do i receive this error? (line 11)
Hi @Zakhar The error you're encountering is due to the function "u0" not being defined in your code. MATLAB is unable to find "...
約1ヶ月 前 | 0
回答済み
How to use multiplexer?
Hi @Kash Costello To connect your environment address and XML files, follow the steps below: 1. Set Up Environment Variables: ...
How to use multiplexer?
Hi @Kash Costello To connect your environment address and XML files, follow the steps below: 1. Set Up Environment Variables: ...
約1ヶ月 前 | 0
回答済み
Simulink library development for multiple Matlab versions
Hi @Bartlomiej Please refer to the following MATLAB documentation regarding managing multiple versions of a model: https://www...
Simulink library development for multiple Matlab versions
Hi @Bartlomiej Please refer to the following MATLAB documentation regarding managing multiple versions of a model: https://www...
約2ヶ月 前 | 0
回答済み
Error when creating a tensor from a for loop
Hi @Bruce The issue arises because the indices in MATLAB must be positive integers. When you change the spacing between the val...
Error when creating a tensor from a for loop
Hi @Bruce The issue arises because the indices in MATLAB must be positive integers. When you change the spacing between the val...
約2ヶ月 前 | 0
回答済み
From making 2D line plots to making 3D surface plots: How to preserve my current workflow?
Hi To solve your problem of writing a scalar-valued function using meshgrid and linear combinations of rotating basis vectors,...
From making 2D line plots to making 3D surface plots: How to preserve my current workflow?
Hi To solve your problem of writing a scalar-valued function using meshgrid and linear combinations of rotating basis vectors,...
約2ヶ月 前 | 0
回答済み
How plot 2D and 3D of a function with contain wiener process?
Hi @salim saeed The Wiener process can be simulated using random walks. Here's an example of how you can plot your function: ...
How plot 2D and 3D of a function with contain wiener process?
Hi @salim saeed The Wiener process can be simulated using random walks. Here's an example of how you can plot your function: ...
2ヶ月 前 | 1
| 採用済み
回答済み
what dose the "-E" symbol on signal-line of simulink model mean
Hi @Leo Zhai The symbol refers to the "Signal to Object Resolution Indicator". For more details, refer to the MathWorks docum...
what dose the "-E" symbol on signal-line of simulink model mean
Hi @Leo Zhai The symbol refers to the "Signal to Object Resolution Indicator". For more details, refer to the MathWorks docum...
2ヶ月 前 | 1
| 採用済み
回答済み
Problem in assigning proper eigevalues in a for-loop
Hi @Tsz Tsun It looks like the issue you are encountering is due to the discontinuities in the eigenvalues, which can happen if...
Problem in assigning proper eigevalues in a for-loop
Hi @Tsz Tsun It looks like the issue you are encountering is due to the discontinuities in the eigenvalues, which can happen if...
2ヶ月 前 | 0
回答済み
How do implement abstract properties without automatically instantiating them?
Hi @Hasan Zakeri When you specify a property with a class type that is "abstract", MATLAB expects an instance of the property t...
How do implement abstract properties without automatically instantiating them?
Hi @Hasan Zakeri When you specify a property with a class type that is "abstract", MATLAB expects an instance of the property t...
2ヶ月 前 | 1
回答済み
Input format of the smooth function
Hi @中祥 范 Yes, the input 'y' to the smooth function can be in either row or column vector form. If you step inside the function,...
Input format of the smooth function
Hi @中祥 范 Yes, the input 'y' to the smooth function can be in either row or column vector form. If you step inside the function,...
2ヶ月 前 | 0
回答済み
Change settling time in simulink
Hi @Ilyan To adjust the settling time of your clamp system to between 1 and 1.5 seconds, you can modify the system parameters. ...
Change settling time in simulink
Hi @Ilyan To adjust the settling time of your clamp system to between 1 and 1.5 seconds, you can modify the system parameters. ...
2ヶ月 前 | 0
回答済み
How can I merge three plots into one plot?
HI @Mir Sahand To merge three separate graphs into one single graph for comparison, you can follow below steps: 1. Load your d...
How can I merge three plots into one plot?
HI @Mir Sahand To merge three separate graphs into one single graph for comparison, you can follow below steps: 1. Load your d...
2ヶ月 前 | 0
| 採用済み
回答済み
Adaptive observer design for nonlinear system
Hi @Meenakshi Tripathi Designing an adaptive observer for a nonlinear system generally involves the following steps: 1. Define...
Adaptive observer design for nonlinear system
Hi @Meenakshi Tripathi Designing an adaptive observer for a nonlinear system generally involves the following steps: 1. Define...
2ヶ月 前 | 0
回答済み
complex number representation as real and imaginary part
Hi @yogeshwari patel It looks like there are a few issues in your code 1. When you try to take the real part and then raise it...
complex number representation as real and imaginary part
Hi @yogeshwari patel It looks like there are a few issues in your code 1. When you try to take the real part and then raise it...
2ヶ月 前 | 0
| 採用済み
回答済み
Checking if an edge in a graph intersects other edges
Hi @Hari Checking for edge intersections in a large 2D undirected network can indeed be computationally intensive, especially i...
Checking if an edge in a graph intersects other edges
Hi @Hari Checking for edge intersections in a large 2D undirected network can indeed be computationally intensive, especially i...
2ヶ月 前 | 0
回答済み
Calculate similarity between data columns in the data matrix
Hi @EK From my understanding, you want to calculate the correlation between a specific column ("column 5") and other columns in...
Calculate similarity between data columns in the data matrix
Hi @EK From my understanding, you want to calculate the correlation between a specific column ("column 5") and other columns in...
2ヶ月 前 | 0
回答済み
Finding digraph cycles efficiently
Hi @Josue Ortega You can adopt the following approach to effectively address each of your requirements: a) Finding all nodes t...
Finding digraph cycles efficiently
Hi @Josue Ortega You can adopt the following approach to effectively address each of your requirements: a) Finding all nodes t...
2ヶ月 前 | 0
回答済み
planar array FFT DOA
Hi @종영 To extend your linear array code to a planar array and visualize the beam pattern using FFT2, you need to consider both ...
planar array FFT DOA
Hi @종영 To extend your linear array code to a planar array and visualize the beam pattern using FFT2, you need to consider both ...
3ヶ月 前 | 0
| 採用済み
回答済み
SIL and PIL simulation mode.
Hi @Tanchak Harshad The error indicates a configuration or licensing issue with SIL or PIL modes in Simulink. First, check y...
SIL and PIL simulation mode.
Hi @Tanchak Harshad The error indicates a configuration or licensing issue with SIL or PIL modes in Simulink. First, check y...
3ヶ月 前 | 0
回答済み
integral of indicator function
Hi @esra kan To compute the integral of an indicator function, you can indeed approximate the integral using a discrete sum and...
integral of indicator function
Hi @esra kan To compute the integral of an indicator function, you can indeed approximate the integral using a discrete sum and...
3ヶ月 前 | 0
回答済み
How can I surrogate data in MATLAB?
Hi @Mir Sahand Surrogating data typically involves generating a new dataset that preserves certain properties of the original d...
How can I surrogate data in MATLAB?
Hi @Mir Sahand Surrogating data typically involves generating a new dataset that preserves certain properties of the original d...
3ヶ月 前 | 0
| 採用済み
回答済み
How to write an event function to stop at second or third x axis crossing.
Hi @Madeleine To stop at the third x-axis crossing, you need to count the number of crossings and stop when the count reaches t...
How to write an event function to stop at second or third x axis crossing.
Hi @Madeleine To stop at the third x-axis crossing, you need to count the number of crossings and stop when the count reaches t...
3ヶ月 前 | 0
回答済み
Changing Limiting the number of logged data points to the last 50000
Hi @Madhusudan You can change the maximum number of logged data points by adjusting the "MaxDataPoints" parameter. Here’s how...
Changing Limiting the number of logged data points to the last 50000
Hi @Madhusudan You can change the maximum number of logged data points by adjusting the "MaxDataPoints" parameter. Here’s how...
3ヶ月 前 | 0
回答済み
How to replace the missing values in cell array with previous ones?
Hi @Muha The fillmissing function didn't work because it is not designed for cell arrays with mixed types. It requires a unifor...
How to replace the missing values in cell array with previous ones?
Hi @Muha The fillmissing function didn't work because it is not designed for cell arrays with mixed types. It requires a unifor...
3ヶ月 前 | 0
回答済み
Finding a pattern in a table and the coordinates of the "first hit"
Hi @Andrew Sol To find the first occurrence of a specific pattern in the first column of your table you can create a duration o...
Finding a pattern in a table and the coordinates of the "first hit"
Hi @Andrew Sol To find the first occurrence of a specific pattern in the first column of your table you can create a duration o...
3ヶ月 前 | 1
回答済み
How can I Associate the users to moving Drones and how to MOVE the Drone toward a specific user in matlab?
Hi @omar th To associate users with drones and move drones towards them, calculate the distance between each user and drone to ...
How can I Associate the users to moving Drones and how to MOVE the Drone toward a specific user in matlab?
Hi @omar th To associate users with drones and move drones towards them, calculate the distance between each user and drone to ...
3ヶ月 前 | 0
回答済み
Display my data from MATLAB to uiHTML
Hi @John Cedrick To display data from your HTML form in MATLAB using the "uihtml" component, you need to ensure that the data...
Display my data from MATLAB to uiHTML
Hi @John Cedrick To display data from your HTML form in MATLAB using the "uihtml" component, you need to ensure that the data...
3ヶ月 前 | 0
回答済み
How to convert seconds to date and time
Hi @Vaidehi Joshi To convert each set of seconds in your cell array Time to "date and time" using the corresponding dates in th...
How to convert seconds to date and time
Hi @Vaidehi Joshi To convert each set of seconds in your cell array Time to "date and time" using the corresponding dates in th...
3ヶ月 前 | 0
| 採用済み
回答済み
How to create a triangle mesh for surface with duplicate x.y values?
Hi @Raven To generate a surface mesh from a set of points where multiple points may share the same (x, y) coordinates but have ...
How to create a triangle mesh for surface with duplicate x.y values?
Hi @Raven To generate a surface mesh from a set of points where multiple points may share the same (x, y) coordinates but have ...
3ヶ月 前 | 0
回答済み
What are matlab.apps.AppBase objects and how do I check them?
Hi @Antonio "matlab.apps.AppBase" is a class that serves as a base class for apps created using App Designer. When you create a...
What are matlab.apps.AppBase objects and how do I check them?
Hi @Antonio "matlab.apps.AppBase" is a class that serves as a base class for apps created using App Designer. When you create a...
3ヶ月 前 | 0