Dhanashree Mohite
Followers: 0 Following: 0
Statistica
RANK
1.791
of 295.467
REPUTAZIONE
36
CONTRIBUTI
0 Domande
25 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
1
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
How to set disableDefaultInteractivity for all axes?
In order to disable default interactivity for all created axes, you can use the following command: >> set(groot,'defaultAxesCre...
oltre 5 anni fa | 1
| accettato
Printing "Scope" plots.
It would be better if you can specify what is actual issue with printed output. But I can suggest to try print to figure using ...
oltre 5 anni fa | 0
| accettato
How can i set accuracy of points in a graph?
Assuming you want to retrieve points from graph with more precision, below link might be useful: https://in.mathworks.com/matl...
oltre 5 anni fa | 0
Reading MRI images with .raw format
Below links might be useful: https://in.mathworks.com/matlabcentral/answers/267922-read-raw-format https://in.mathworks.com/ma...
oltre 5 anni fa | 0
how to plot shading background color and shading marker face color
Below link might be useful: https://in.mathworks.com/matlabcentral/fileexchange/29797-add-a-background-gradient-to-plots
oltre 5 anni fa | 0
| accettato
Changing background colors in app designer: UI Radio buttons and UI Check boxes
As of now there is no way to set the white color of radio button or checkbox directly. As a workaround, you can try below thing...
oltre 5 anni fa | 0
| accettato
How do i do a thousand simulation in a fast way?
This blog might help you: https://blogs.mathworks.com/simulink/2010/12/06/5-resources-for-simulation-performance/
oltre 5 anni fa | 0
Import in workspace large data set from .txt file
Below link mentions different methods which can help you out to work on big files and large data. https://in.mathworks.com/help...
oltre 5 anni fa | 0
How to draw curve between points to make a spiral?
Please refer below MLAnswer link: https://in.mathworks.com/matlabcentral/answers/431465-plotting-a-spiral-in-matlab-knowing-the...
oltre 5 anni fa | 0
Save new image as tif
As per my understanding size of the image will depend on compression technique that we are using and also as header size will di...
oltre 5 anni fa | 0
| accettato
how to calculate curl of Laguerre-Gaussian modes?
Refer below link: https://www.mathworks.com/help/symbolic/curl.html
oltre 5 anni fa | 0
| accettato
How to read data sent from matlab in arduino?
As per my understanding, serial data is not available to read in both cases. Check status of serial object after open and Value...
oltre 5 anni fa | 0
How to get input and output names of a below subsystem?
As per my understanding you can use ‘find_system’ command with Blocktype and SearchDepth parameters. >> find_system('modelName'...
oltre 5 anni fa | 0
How can I collect data from two different sources simultaneously?
As per my understanding, you can use the Parallel Computing Toolbox's SPMD feature to do this. The other alternative is to do ti...
oltre 5 anni fa | 0
How do I generate a PDF report from a Microsoft Word Template using MATLAB Report Generator R2023a?
You can use report explorer to generate report for word document. Use below command to open report explorer for that file: >> ...
oltre 5 anni fa | 0
Keep getting "Unable to perform assignment because the indices on the left side are not compatible with the size of the right side."
As per my understanding Line no. 41 and 43 should contain t(i) instead of t. Line no. 43 should be Qsa(i) = (Qmax.*(Ts-t(i))...
oltre 5 anni fa | 0
createInputDataset() is deleting all the data in my workspace. Why?
Please follow steps given in below link and it's working fine on my system. https://www.mathworks.com/help/simulink/slref/creat...
oltre 5 anni fa | 0
How can I plot multiple dots in single graph?
Try to use scatter plot. there is option to plot with different colors as well. You can refer the below link: https://www.math...
oltre 5 anni fa | 0
Matlab command for Simulink Goto 'rename all' button?
As per my understanding, there is no direct way to call 'rename all' button of goto block's window from matlab command line. But...
oltre 5 anni fa | 0
switch controlled by signal
In case if one value to be given to the to selection input of switch block, you can use below options: Use constant block and ...
oltre 5 anni fa | 0
Set of SISO transfer functions to MIMO transfer function
As you want to create Transfer function model in MATLAB, you can use ‘tf’ function. For your case it will be: Numerator = {1,2...
oltre 5 anni fa | 0
Distance-Time data extraction
As per my understanding, as (distance<=0.5nm) and distance is 2nd column, so it should be: data = dlmread('Minimumdistance.txt'...
oltre 5 anni fa | 0
Increment goto name in Simulink
You can do it programmatically through add_block and set_param, as per my understanding. Please refer the following example. s...
oltre 5 anni fa | 0
How do I display logged local data of stateflow in Logic Analyzer
As per my knowledge, there is no such way in MATLAB R2018b to view local variables of Stateflow in Logic Analyzer. But yes, it...
quasi 6 anni fa | 0
| accettato
Simulink block for initialization
As per my understanding, you want to use one constant value while initializing and afterwards the feedback value. So, actually ...
quasi 6 anni fa | 0
| accettato