photo

Tejas


Last seen: 3 jours il y a Actif depuis 2024

Followers: 0   Following: 0

Statistiques

  • Knowledgeable Level 2
  • 3 Month Streak
  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
Does MatLab work on VDI
Hello Jesus, Yes, MATLAB can be used on a VDI. To install it on a VDI, follow these steps: Check that your MATLAB license al...

2 jours il y a | 0

Réponse apportée
Calculate f for multiple inputs
Hello Arashdeep, The vectors ‘q’, ‘x’, and ‘y’ have dimensions of [99,1], while ‘u’ and ‘v’ have dimensions of [1,101]. Subtra...

3 jours il y a | 0

Réponse apportée
NARX export to Simulink time step
Hello Sohrab, When exporting a NARX network block to Simulink, the ‘gensim’ function can be used to adjust the sample time as ...

4 jours il y a | 0

Réponse apportée
How can we use the m files for Daughman Integro-differential operator given in the hyperlink below?
Hello Ridhima, I understand that the requirement is to use the collection of .M files published in File-Exchange with title “I...

5 jours il y a | 0

Réponse apportée
limiting broadcast variable in a 3d block processing program
Hello Tiwwexx, To stop the broadcasting of the ‘pad_im’ array, consider making it a ’Distributed Array’. This will partition t...

6 jours il y a | 0

Réponse apportée
dynamic images for temporal dithering
Hello André, To create dynamic temporal images, use the Axes UI component to plot the images. Then use 'timer' function to exe...

6 jours il y a | 0

Réponse apportée
Comparison of excel sheet data and output should be excel sheet for matched and mismatched data using simulink model.
Hello Divyashree, To compare two Excel files in Simulink, create a .M script that reads the Excel files and extracts matched an...

7 jours il y a | 0

Réponse apportée
callback in TreeNode Propertis
Hello Luca, Follow the example below to add a callback to a node within a Tree: Define a callback for the Tree using the ‘Se...

10 jours il y a | 0

| A accepté

Réponse apportée
How to get input from a simulink model to .m file ?
Hello Prerna, The output of a 'MUX' is a vector, allowing the elements within the output signal to be indexed like any other ve...

10 jours il y a | 0

Réponse apportée
Extracting string value from table - Receive error "Expression for initial value of data must evaluate to logical or supported numeric type."
Hello Rocke, Table-type data cannot be directly passed as an input to a ‘MATLAB Function Block’ in Simulink. The table needs t...

11 jours il y a | 1

Réponse apportée
How to compare between simulink setting file?
Hello Dayoung, Here is a workaround to compare Simulink setting files without using the ‘visdiff’ function. It is assumed that...

11 jours il y a | 0

Réponse apportée
How to use looping method to crop image dynamically (auto-cropping)?
Hello Dayangku, I am assuming you want to automate the process of resizing images to 512 x 512 pixels by adding padding if any...

12 jours il y a | 0

Réponse apportée
Different Numerical results between Intel and AMD
Hello Huiyu, My understanding from the above question is, that you want to know why there is difference in numerical values wh...

12 jours il y a | 0

Réponse apportée
Compute the curl of a trajectory (identify clockwise or anti-clockwise motion)
Hello Andreas, It looks like you are curious about why there is an issue when trying to use the curl function and how to corre...

3 mois il y a | 0

Réponse apportée
GARCH (conditional variance models) for panel data?
Hello Marta, The garch model can be applied to panel data, provided that the data for each panel is considered as an individua...

3 mois il y a | 0

Réponse apportée
Bisection and Fixed Point İterations: Function input
Hi Abdussamet, A function or mathematical equation can be accepted as input from the user using an anonymous function. An anon...

3 mois il y a | 0

Réponse apportée
How to know if an RL agent has been updated
Hi Haochen, I also encountered the same issue while working with MATLAB R2024a. My understanding is that when a copy of an age...

3 mois il y a | 0

| A accepté

Réponse apportée
Help, I need to know how to build a dataset. I have 7 txt file of bearing raw vibration generated. If can I need step by step. Already three days search.
Hi Rusyaidi, In supervised learning, models require the provision of expected values or classes alongside the data entries the...

3 mois il y a | 1

| A accepté

Réponse apportée
Why do I get the "Failure to load the device plug-in" when connecting with android mobile device?
Hello Dina, To resolve the above issue, try this workaround: Navigate to Environment Variables > System Variables and choose...

3 mois il y a | 2

Réponse apportée
Set Model Callbacks with Simulink Block
Hello Marcus, My understanding from above question is that you want a block, placed inside the Simulink model to establish ‘In...

4 mois il y a | 0

Réponse apportée
Passing data from Mask to Block
Hello Oleksiy, From my understanding, you want to pass ‘myMatrix’, which is generated from a mask callback, into the ‘MATLAB f...

4 mois il y a | 0

Réponse apportée
Equivalent of passing structure to "varargin" for the new "Function Argument Validation" introduced in 2019b
Hello Nate, It seems you are looking to streamline function calls by passing input arguments as name-value pairs in the form o...

4 mois il y a | 0

Réponse apportée
How to find scalar field from a polynomial curve fit
Hello Tyde, It looks like you want to create a scaler field that encompasses every point in the ‘data.mat’ file. In the curr...

4 mois il y a | 0

Réponse apportée
Stopping Criteria in bayesopt for Early Termination
Hello Muhammad, It seems you want a method to halt Bayesian optimization prematurely when a certain parameter value falls bene...

4 mois il y a | 0

| A accepté

Réponse apportée
printing message to MATLAB command window with C++ Engine API.
Hello Trevor, It seems you are looking for a method to display messages in the MATLAB command line while utilizing the C++ Eng...

4 mois il y a | 0

Réponse apportée
timerange subscript within a timetable
Hello Andy, It seems you are looking for some assistance on how to effectively use the ‘timerange’ function to fetch data. T...

4 mois il y a | 0

| A accepté

Réponse apportée
Matlab ODE function solving using Python Scipy library.
Hello Simon, It appears from the code shared above, that you are attempting to pass a MATLAB function handle as an input argume...

5 mois il y a | 1

Réponse apportée
How to merge two hdf5 files?
Hello Bhakti, Based on my understanding, there are two primary methods for merging .HDF5 files: Using HDF5 Tools: Tools ...

5 mois il y a | 0

Réponse apportée
How to create an output from trained model using "nnstart" with new set of input data with unknown output?
Hello Ahmad, To train a neural network and obtain predictions using the ‘nnstart’ tool, simply type nnstart in the MATLAB c...

5 mois il y a | 0

Réponse apportée
Question: Structure Array Generation and Dimensions Manipulation
Hello Wei, It seems you are encountering an error while trying to concatenate two structures of different dimensions. The ro...

5 mois il y a | 0

Charger plus