Community Profile

photo

Prannay Jain

MathWorks

Aktiv seit 2016

Followers: 0   Following: 0

Kontakt

I am an Application Support Engineer at MathWorks with a Computer Science background.

Statistiken

  • Knowledgeable Level 3
  • Knowledgeable Level 2
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
Is there a way to use fmincon without function handles?
According to the documentation of fmincon - <http://www.mathworks.com/help/optim/ug/fmincon.html>, you can also use problem stru...

fast 7 Jahre vor | 0

Beantwortet
Is there a way to change model parameters at runtime that is support for code generation?
For code generation, depending on the complexity of blocks, the user could try building the sources from basic blocks or use S-f...

fast 7 Jahre vor | 0

Beantwortet
ODE options in simulink (jpattern)
Have a look at this document and search for jpattern, <http://www.mathworks.com/help/matlab/ref/odeset.html>

fast 7 Jahre vor | 0

Beantwortet
Can I use my R2017a student license on 2 computers?
Generally, the answer to such questions depends on the license type and other licenses related stuff. To get a swift answer, ...

fast 7 Jahre vor | 0

Beantwortet
How to change the color of "partial" text in gui static text
Unfortunately, currently this is not possible to change the color of "partial" text in gui static text. You may think of adding...

fast 7 Jahre vor | 0

Beantwortet
How to use a for loop to add an array and matrix together?
Below two for loops should work for your case. Fill SLSCMatrix column wise as SLSVRise is a column matrix. for j=1:N f...

fast 7 Jahre vor | 0

Beantwortet
Creating log file for Matlab compiler's created executable
You probably cannot provide the variable in the logfile name while using 'mcc'. As a workaround, create an expression of the mcc...

fast 7 Jahre vor | 1

Beantwortet
messy table in one column
To skip first 11 lines which have string, you can use, readtable(fileName, 'HeaderLines', 11) 'readtable' expects to h...

fast 7 Jahre vor | 0

Beantwortet
There are two main folders which have 50 sub-folder each. In sub-folders there are tiff images. How to read images from sub-folders.
% Create a cell array of pre-defined directory locations folders = {'/media/DATA/M-001';'/media/DATA/M-002'}; for i ...

fast 7 Jahre vor | 0

| akzeptiert

Beantwortet
Converting from volume (or image) to meshgrid
>> A=imread('grayimage.jpeg'); >> [X,Y]=meshgrid(1:size(A,1), 1:size(A,2)); You can also refer to this link, <https:/...

fast 7 Jahre vor | 2

| akzeptiert

Beantwortet
Java heap size is not accessing all available RAM
If the maximum value, allowed by this slider, is too small for the requirements, it could be directly adjusted by editing: "C...

fast 7 Jahre vor | 5

| akzeptiert

Beantwortet
Error using MEX in matlab r2016b with XCODE Version 8.3.2
The error could sometimes happen if the licensing terms of XCode are not accepted. Hence, to fix the issue, XCode can be opened ...

fast 7 Jahre vor | 0

Beantwortet
Matlab socket is not interruptible?
Currently in MATLAB, when you try to open a connection (either as the 'server' or the 'client') using a 'tcpip' object, the call...

etwa 7 Jahre vor | 0

| akzeptiert

Beantwortet
Matlab socket is not interruptible?
You have mentioned that setting the 'Interruptible' flag to 'on' does achieve your expected behavior. Then what is the part that...

etwa 7 Jahre vor | 0

Beantwortet
Possible to find if a portion of an array equals an array of the same size as the portion?
Yes, it is possible to compare a part of an array with another array of the same size of sub-array. You will have to write lo...

etwa 7 Jahre vor | 1

| akzeptiert

Beantwortet
how can i set the range of snr in the matlab script i found on www.polarcodes.com
From a quick glance at the code provided at www.polarcodes.com, it seems that snr can be set in file "plotPC.m" line number 61. ...

etwa 7 Jahre vor | 0

Beantwortet
How to use alphadata for markers in scatter plot so each marker has a different alpha value?
I work for MathWorks and I have provided this feedback to the developers. As a work around, you can set the alpha for every p...

etwa 7 Jahre vor | 1

Beantwortet
Postgres/Matlab: "JDBC driver file was not found on MATLAB Java classpath“
As I mentioned above, the JDBC driver should match the corresponding JDK version of your MATLAB. Since your MATLAB shows Java 1....

etwa 7 Jahre vor | 0

Beantwortet
How can I use MAT-file API to create WPF applications?
You can go throw this detailed documentation on MAT-API to read and write MATLAB data from C/C++ programs: <http://www.mathwo...

etwa 7 Jahre vor | 0

| akzeptiert

Beantwortet
Matlab socket is not interruptible?
'tcpip' is not a base MATLAB function. It comes with Instrument Control Toolbox. Can you try with 'tcpclient' which comes with b...

etwa 7 Jahre vor | 0

Beantwortet
Matlab compiled jar cannot run with task scheduler but can run manually
I am not sure what might be the issue, but there are few things you might try: 1) It may be a permission issue. Make sure tha...

etwa 7 Jahre vor | 0

| akzeptiert

Beantwortet
Postgres/Matlab: "JDBC driver file was not found on MATLAB Java classpath“
Make sure that you are using the correct version of JDBC driver and adding the full path to the database driver JAR file in "jav...

etwa 7 Jahre vor | 0

Beantwortet
How can I setup efficiently parallel pool for local computation??
I understand that you are not getting the performance improvement by using PCT. Parallelizing the code does not always speed up ...

etwa 7 Jahre vor | 0

Beantwortet
Out of memory smpd parallel computing toolbox eig on complex matrix
I understand that you are running into memory issues even after parallelizing the computation using spmd and parpool. Moving ...

etwa 7 Jahre vor | 0

| akzeptiert

Beantwortet
How to make an app built by AppDesigner suitable for deployment as santdalone?
Regarding your second question of using toolboxes inside the application, MATLAB Compile Runtime (MCR) will take care of most of...

etwa 7 Jahre vor | 1

Beantwortet
How to make an app built by AppDesigner suitable for deployment as santdalone?
I understand that you would like to provide matrices available in a workspace as user inputs to your standalone application. In ...

etwa 7 Jahre vor | 0

| akzeptiert

Beantwortet
Error while using webcam from my laptop
OS Generic Video Interface Support package is used for Image Acquisition Toolbox which does not provide 'webcam' command. To use...

etwa 7 Jahre vor | 0

Beantwortet
Parallel profile isn't saved.
The parallel computing profiles reside in the MATLAB Preferences directory as suggested by Edric in the above post. The contents...

etwa 7 Jahre vor | 0

Beantwortet
Code in live script run much slow
Yes, the code runs slower in the live script than in the command line. Currently, there is no way to configure the amount of res...

mehr als 7 Jahre vor | 4

Beantwortet
Parallel computing is posible in simscape SimPowerSystem?
Yes, parallel computing is possible in Simulink. Refer to this document for more details: <http://www.mathworks.com/help/simuli...

mehr als 7 Jahre vor | 0

| akzeptiert

Mehr laden