Community Profile

photo

Varun Gunda

MathWorks

Last seen: meer dan 3 jaar ago Active since 2016

I am an Electrical Engineer by education.

Statistics

All
  • Knowledgeable Level 2
  • First Answer
  • Solver

View badges

Content Feed

View by

Answered
How do I export the whole figure plotted in matlab using export_fig?
Try this: >> set(gcf,'PaperOrientation','landscape'); >> print -dpdf myFig -fillpage

bijna 7 jaar ago | 0

| accepted

Answered
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...

bijna 7 jaar ago | 0

Answered
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. ...

bijna 7 jaar ago | 0

Answered
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^...

bijna 7 jaar ago | 0

Answered
매틀랩 다운받는 사이트를 알려주세요
Check the system requirements for MATLAB in <https://in.mathworks.com/support/sysreq.html this> and <https://in.mathworks.com/su...

bijna 7 jaar ago | 0

Answered
How to make RTW options persist.
You can use Simulink® Preferences to specify Simulink editing environment options and default behaviors. In the MATLAB® Comma...

bijna 7 jaar ago | 1

Answered
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...

bijna 7 jaar ago | 1

| accepted

Answered
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...

bijna 7 jaar ago | 0

Answered
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: ...

bijna 7 jaar ago | 0

| accepted

Answered
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...

bijna 7 jaar ago | 0

Answered
Editing FITS file header
The following file exchange submission will suit your purpose: <https://in.mathworks.com/matlabcentral/fileexchange/28055-mfi...

bijna 7 jaar ago | 0

Answered
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...

bijna 7 jaar ago | 0

| accepted

Answered
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...

bijna 7 jaar ago | 1

Answered
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...

bijna 7 jaar ago | 0

Answered
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...

bijna 7 jaar ago | 0

Answered
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&section=SimulinkControl#9 Here> is a good example for your use...

bijna 7 jaar ago | 1

| accepted

Answered
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...

bijna 7 jaar ago | 1

| accepted

Answered
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...

bijna 7 jaar ago | 1

Answered
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...

bijna 7 jaar ago | 0

Answered
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...

bijna 7 jaar ago | 1

Answered
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...

bijna 7 jaar ago | 1

Answered
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.

ongeveer 7 jaar ago | 0

Answered
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...

meer dan 7 jaar ago | 0

Solved


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 ...

meer dan 7 jaar ago

Solved


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:...

meer dan 7 jaar ago