photo

Sreelakshmi S.B


Aktiv seit 2019

Followers: 0   Following: 0

Statistik

All
  • Solver
  • Knowledgeable Level 2
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
Installation error with silent mode on linux.
You can try out the solutions provided in the accepted answer in this link:https://in.mathworks.com/matlabcentral/answers/98390-...

etwa 5 Jahre vor | 0

Beantwortet
Is there any good video and documentation to convert from Simulink to C and C++ code
Documentation on how to Generate C code from a Simulink model : https://in.mathworks.com/help/dsp/ug/generate-c-code-from-simuli...

etwa 5 Jahre vor | 0

Beantwortet
Missing `suptitle` and `writeVideo` functions
'suptitle' is included as part of a demo in the Bioinformatics Toolbox.Make sure you have that toolbox installed and its include...

etwa 5 Jahre vor | 0

| akzeptiert

Beantwortet
How do I code for using multithreaded parallelism?
This could get you started : https://in.mathworks.com/products/parallel-computing.html You can use 'parfor' to execute for loop...

etwa 5 Jahre vor | 0

Beantwortet
Unable to generate report using Embedded Web View
Generally the error 'cannot be found on MATLAB's search path, or is shadowed by another file with the same name.' is received wh...

etwa 5 Jahre vor | 0

Beantwortet
How to activate Live Editor in Ubuntu 18.04?
Go through the answers in this link: https://in.mathworks.com/matlabcentral/answers/397096-the-live-editor-is-unable-to-run-in-...

etwa 5 Jahre vor | 0

| akzeptiert

Beantwortet
Change Reference frame in 3d plot
You can't rotate the axes without affecting the plot inside.Instead,you can rotate the quiver object.Go through the accepted ans...

etwa 5 Jahre vor | 0

| akzeptiert

Beantwortet
How can I get the code for MATLAB's FFT and CZT functions?
Typing 'edit czt' will give you the source code for the czt function in MATLAB. In the case of FFT, MATLAB uses the FFTW librar...

etwa 5 Jahre vor | 0

| akzeptiert

Beantwortet
How do I pass a string from a C++ Mex file to the MATLAB workspace?
You can convert var to an mxArray and use 'engPutVariable' to write the mxArray into the Matlab Engine Worspace.You can find det...

etwa 5 Jahre vor | 0

Beantwortet
How do I create a button that switches to another tab of a GUI?
You can try the code below. I’ve used uibutton in place of uicontrol since there is no 'ButtonPushedFcn' property on the UIContr...

mehr als 5 Jahre vor | 0

Beantwortet
How can I save a figure as an EPS file without white margins?
You can go through the following link. It explains in detail how to save a figure with minimal white space: https://www.mathwor...

mehr als 5 Jahre vor | 1

Beantwortet
Unable to perform assignment because the size of the left side is 1-by-1 and the size of the right side is 1-by-14.
P9 might be of size 1x14 but you're assigning z (of size 1x14) to P9(1,i) which is of size 1

mehr als 5 Jahre vor | 0

Beantwortet
Using relational operator as a function input
If it’s the condition you want to pass, you could always pass it as a string or a character array and then parse it to get the ...

mehr als 5 Jahre vor | 0

Beantwortet
How to align and wrap labels according to perspective of 3D figure
You can rotate the axis labels by setting properties 'XTickLabelRotation' and 'YTickLabelRotation' for the axes(try rotating by ...

mehr als 5 Jahre vor | 0

Beantwortet
With the MATLAB Compiler, why is the installer produced when I select Runtime Include in package smaller than the size of the MATLAB Runtime installer itself?
Possible explanation for this might be: Starting R2015b, you can separate the core(Full installation of MATLAB Runtime) and GPU...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
stacked two columns of four in bar3
From what i understand,each time bar3 is called, plotting starts from the beginning.So calling bar3 twice-one for the unstacked ...

mehr als 5 Jahre vor | 0

Beantwortet
Unit Advance Block in Simulink (Opposite of Unit Delay Block)
Opposite of unit delay is unit prediction and there is no way to predict a signal unless simulation is done up to that point. On...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
find the differences between two funtions
You can try the following code: g=46e9; b=0.2556e-9; nu=0.33; zi=0.155e-9; y=1e-8; x=2e-9:1e-10:2e-7; v=@(x) g*b/(2*pi*...

mehr als 5 Jahre vor | 0

Beantwortet
using menu() function to calculate time differences
There's a mistake in the 5th line of you code.You're using == .You need to use =. Also,you need to have the first assignment to...

mehr als 5 Jahre vor | 0

Beantwortet
Using 'doc' on overloaded/overridden classes: Help only shows the Matlab class documentation
I don't think there's any quick way to do this .If you go through the 'Description' section of the documentation for doc- https:...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Timing belt pulley (Simulink)
Yes.Timing belts can be modelled and analyzed.Two pulley blocks connected together can be used to model the belt and the tooth i...

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
SVN: New Files do not show up
This might have something to do with the refreshing of files and file statuses.To resolve this you can take a look at the follow...

mehr als 5 Jahre vor | 0

Beantwortet
How can you use Application Compiler to build an app for a target OS that is different from the one you are building on?
Please go through the following link: Create Standalone Application from MATLAB "MATLAB Compiler produces an installer that in...

mehr als 5 Jahre vor | 0

Beantwortet
Creating a counting vector for "wins"
A simple solution: totalgames = 100; odd_wins = zeros(1,totalgames); even_wins = zeros(1,totalgames); %% special case ...

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
Installing error: cannot find the files specified
You can go through the accepted answer in the following link: Why did My MATLAB installation fail, with the following error in ...

mehr als 5 Jahre vor | 0

Beantwortet
unable to launch matlab
Please refer to this link - https://www.mathworks.com/matlabcentral/answers/106141-why-am-i-continuously-prompted-to-activate-wh...

mehr als 5 Jahre vor | 0