Varun Gunda
MathWorks
Followers: 0 Following: 0
I am an Electrical Engineer by education.
統計
All
Feeds
回答済み
How do I export the whole figure plotted in matlab using export_fig?
Try this: >> set(gcf,'PaperOrientation','landscape'); >> print -dpdf myFig -fillpage
How do I export the whole figure plotted in matlab using export_fig?
Try this: >> set(gcf,'PaperOrientation','landscape'); >> print -dpdf myFig -fillpage
8年弱 前 | 0
| 採用済み
回答済み
What can I do to avoid the following error with mupadmex ?
Executing "which -all sym" reveals if there is a custom file with the same name "sym", which is causing this error. Renaming the...
What can I do to avoid the following error with mupadmex ?
Executing "which -all sym" reveals if there is a custom file with the same name "sym", which is causing this error. Renaming the...
8年弱 前 | 0
回答済み
I need help using a p function as a block in simulink.
MATLAB functions can call P-code. When the .m and .p versions of a file exist in the same folder, the P-file takes precedence. ...
I need help using a p function as a block in simulink.
MATLAB functions can call P-code. When the .m and .p versions of a file exist in the same folder, the P-file takes precedence. ...
8年弱 前 | 0
回答済み
Solve for multiple values
You can try the following: ipop = zeros(4,50); for x=1:50 eq1= 5*x^3+3*x^2+4*x+5; eq2= 0.05*x^2+4*x+5; eq3= 100*x^...
Solve for multiple values
You can try the following: ipop = zeros(4,50); for x=1:50 eq1= 5*x^3+3*x^2+4*x+5; eq2= 0.05*x^2+4*x+5; eq3= 100*x^...
8年弱 前 | 0
回答済み
매틀랩 다운받는 사이트를 알려주세요
Check the system requirements for MATLAB in <https://in.mathworks.com/support/sysreq.html this> and <https://in.mathworks.com/su...
매틀랩 다운받는 사이트를 알려주세요
Check the system requirements for MATLAB in <https://in.mathworks.com/support/sysreq.html this> and <https://in.mathworks.com/su...
8年弱 前 | 0
回答済み
How to make RTW options persist.
You can use Simulink® Preferences to specify Simulink editing environment options and default behaviors. In the MATLAB® Comma...
How to make RTW options persist.
You can use Simulink® Preferences to specify Simulink editing environment options and default behaviors. In the MATLAB® Comma...
8年弱 前 | 1
回答済み
I have an excel file with multiple sheets and each sheet contains numbers and words. How can I upload the file so each sheet can be read and the values within it can be analyzed?
MATLAB function 'xlsread' will suit your use case. Check the documentation in following <https://in.mathworks.com/help/matlab/re...
I have an excel file with multiple sheets and each sheet contains numbers and words. How can I upload the file so each sheet can be read and the values within it can be analyzed?
MATLAB function 'xlsread' will suit your use case. Check the documentation in following <https://in.mathworks.com/help/matlab/re...
8年弱 前 | 1
| 採用済み
回答済み
loadlibrary works on 32 bit but not 64 bit MATLAB
The "is not a valid Win32 application" error usually means that you are attempting to load a 32-bit DLL using 64-bit MATLAB. Che...
loadlibrary works on 32 bit but not 64 bit MATLAB
The "is not a valid Win32 application" error usually means that you are attempting to load a 32-bit DLL using 64-bit MATLAB. Che...
8年弱 前 | 0
回答済み
What is this hds folder missing in 2017a?
HDS toolbox is not a product of MathWorks. Its a third party submission. More information about this toolbox can be found here: ...
What is this hds folder missing in 2017a?
HDS toolbox is not a product of MathWorks. Its a third party submission. More information about this toolbox can be found here: ...
8年弱 前 | 0
| 採用済み
回答済み
Implementing Markowitz Portfolio Optimization in Matlab
As given in the example in the following link: <http://in.mathworks.com/help/optim/ug/quadprog.html> H would be a nxn matr...
Implementing Markowitz Portfolio Optimization in Matlab
As given in the example in the following link: <http://in.mathworks.com/help/optim/ug/quadprog.html> H would be a nxn matr...
8年弱 前 | 0
回答済み
Editing FITS file header
The following file exchange submission will suit your purpose: <https://in.mathworks.com/matlabcentral/fileexchange/28055-mfi...
Editing FITS file header
The following file exchange submission will suit your purpose: <https://in.mathworks.com/matlabcentral/fileexchange/28055-mfi...
8年弱 前 | 0
回答済み
Is it possible to manage MatLab and Simulink remotedly?
The best way is with VNC. You can start a VNC server on the host machine, and then access this desktop remotely from anywhere wi...
Is it possible to manage MatLab and Simulink remotedly?
The best way is with VNC. You can start a VNC server on the host machine, and then access this desktop remotely from anywhere wi...
8年弱 前 | 0
| 採用済み
回答済み
How to fit a curve to the following 3D data?
If you have the <https://in.mathworks.com/products/curvefitting.html Curve Fitting Toolbox> , you could try <http://in.mathworks...
How to fit a curve to the following 3D data?
If you have the <https://in.mathworks.com/products/curvefitting.html Curve Fitting Toolbox> , you could try <http://in.mathworks...
8年弱 前 | 1
回答済み
Making visual stimuli code
You can make use of inbuilt app 'imview' that comes with Image Processing Toolbox. Check the following documentation and try th...
Making visual stimuli code
You can make use of inbuilt app 'imview' that comes with Image Processing Toolbox. Check the following documentation and try th...
8年弱 前 | 0
回答済み
In Simscape Driveline, any use of a clutch causes the solution to not converge
The following points may help you: 1) If you encounter convergence failures or abrupt driveline state (velocity) changes at o...
In Simscape Driveline, any use of a clutch causes the solution to not converge
The following points may help you: 1) If you encounter convergence failures or abrupt driveline state (velocity) changes at o...
8年弱 前 | 0
回答済み
Is there a good example to learn how to implement a discrete time controller on a analog plant?
<http://ctms.engin.umich.edu/CTMS/index.php?example=MotorPosition§ion=SimulinkControl#9 Here> is a good example for your use...
Is there a good example to learn how to implement a discrete time controller on a analog plant?
<http://ctms.engin.umich.edu/CTMS/index.php?example=MotorPosition§ion=SimulinkControl#9 Here> is a good example for your use...
8年弱 前 | 1
| 採用済み
回答済み
I keep getting an error when trying to run the following command from the MATLAB Fundamentals class (pg 6-11 in course notes). Doesn't writetable overwrite a file if it already exists?
Try the following solution that worked for people with same issue: After creating the two above-named folders, the MATLAB s...
I keep getting an error when trying to run the following command from the MATLAB Fundamentals class (pg 6-11 in course notes). Doesn't writetable overwrite a file if it already exists?
Try the following solution that worked for people with same issue: After creating the two above-named folders, the MATLAB s...
8年弱 前 | 1
| 採用済み
回答済み
Error starting desktop r2017a on mac os Sierra (Solved)
Remove your preferences directory so MATLAB will recreate it when you launch MATLAB: Open the Finder, the blue face on the do...
Error starting desktop r2017a on mac os Sierra (Solved)
Remove your preferences directory so MATLAB will recreate it when you launch MATLAB: Open the Finder, the blue face on the do...
8年弱 前 | 1
回答済み
After generating MATLAB DLL, how do you implement in C++?
If you are using the MCR to utilize the DLLs, please add the directory: [MCR root]\extern to your Visual Studio project pa...
After generating MATLAB DLL, how do you implement in C++?
If you are using the MCR to utilize the DLLs, please add the directory: [MCR root]\extern to your Visual Studio project pa...
8年弱 前 | 0
回答済み
Clean-up after repeated crashes
There are several possibilities that could be causing your simulation to run slowly: 1. You have a MATLAB Function Block - Wh...
Clean-up after repeated crashes
There are several possibilities that could be causing your simulation to run slowly: 1. You have a MATLAB Function Block - Wh...
8年弱 前 | 1
回答済み
One user (of many) is having trouble with a distributed executable. He is getting the message that he can't find version 8.4 of the MCR but he has verified that it is installed. See screen shots below.
There is a bug in MATLAB Compiler R2014a in the way the MCR entry in the PATH is handled. R2014a cannot handle a trailing backsl...
One user (of many) is having trouble with a distributed executable. He is getting the message that he can't find version 8.4 of the MCR but he has verified that it is installed. See screen shots below.
There is a bug in MATLAB Compiler R2014a in the way the MCR entry in the PATH is handled. R2014a cannot handle a trailing backsl...
8年弱 前 | 1
回答済み
Is there a raspberry pi zero support in the raspberry support package?
Unfortunately Simulink Support Package for Raspberry Pi Hardware does not support Raspberry pi zero.
Is there a raspberry pi zero support in the raspberry support package?
Unfortunately Simulink Support Package for Raspberry Pi Hardware does not support Raspberry pi zero.
約8年 前 | 0
回答済み
read large csv File and export specific Values
It is my understanding that you want to read large csv-file with mixed datatype and export specific values. You can do this b...
read large csv File and export specific Values
It is my understanding that you want to read large csv-file with mixed datatype and export specific values. You can do this b...
8年以上 前 | 0
解決済み
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
8年以上 前
解決済み
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
8年以上 前