Community Profile

photo

sam0037

MathWorks

Con actividad desde 2015

Followers: 0   Following: 0

All opinion expressed here are that of my own.
Professional Interests: Computer Science

Estadísticas

All
  • Knowledgeable Level 2
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Respondida
Matlab coder doesn't work with commands like try, { , so is there any way to fix it?
Hi Refer to the following linkto know about Functions and Objects Supported for C and C++ Code Generation: http://www.mat...

casi 8 años hace | 0

Respondida
How can I run a function in parallel and return the compiled output of the function?
Hi, One way to achieve this would be to create a set of jobs and submit to your parallel cluster for execution. Refer to the ...

casi 8 años hace | 1

| aceptada

Respondida
How to transfer data between apps using app designer
Hi, You can use public properties as explained in the link below to share data between apps. And you can add a closeRequestFc...

casi 8 años hace | 1

Respondida
How to get Bus details from an output port using MATLAB and not Simulink?
Hi, Following link will help in getting the BUS details programatically: <http://www.mathworks.com/help/simulink/ug/buses....

alrededor de 8 años hace | 0

Respondida
how to define an anonymous function in spmd block?
Hi, As per this documentation <http://www.mathworks.com/help/distcomp/programming-tips_brukbnp-9.html#brukbnp-12 link> , the ...

alrededor de 8 años hace | 1

Respondida
Why does program execution hang when using "pause?"
Hi, This is a bug which only occurs in Windows 10. Using Space key to come out of pause mode works, but if Enter key is used ...

alrededor de 8 años hace | 0

| aceptada

Respondida
Error in alternateGetframe when creating a video in a large for loop
Hi, I was able to create a video using nFrames = 10000 in MATLAB R2015b. I did make a couple of changes to the above code. I ...

alrededor de 8 años hace | 0

Respondida
What is the best way to implement Class Diagrams in Simulink&Stateflow ? What is the equivalent of classes representation in Stateflow?
Hi, This <http://www.mathworks.com/videos/hybrid-software-development-with-simulink-and-uml-tools-68870.html link> talks abou...

alrededor de 8 años hace | 0

Respondida
How can I fasten my code?
Hi, Let us break this work into two parts say 'Code Re-Designing' and 'Algorithm Re-Designing'. *Part 1 :: Code Re-Design...

alrededor de 8 años hace | 0

| aceptada

Respondida
How to input a half sine pulse force with varying loads for different time variables?
Hi, You can define your load in the following way: delt = 0.1; t = [0:delt:2]'; P = 10*sin(pi*t/0.6); %input loa...

alrededor de 8 años hace | 0

Respondida
I would like to make an equation to solve t when T_max is equal to 450
Hi, Appending these three commands to your code will do the magic: eqn = T_max == 450; res = solve(eqn,t); val = d...

alrededor de 8 años hace | 0

Respondida
How to Store Variable Names for Struct Titles
Hi, To dynamically name the fields of struct depending on the name of the inputs to the function, you can use the ' <http://w...

alrededor de 8 años hace | 1

| aceptada

Respondida
Applying rotation matrix on inclined plane
Hi, My understanding is that you would like to rotate this given plane (which passes through origin) such that the normal of ...

alrededor de 8 años hace | 0

| aceptada

Respondida
approximate the value of π using the following algorithm based on geometric probability. This algorithm is an example of the so called monte carlo method
Hi, The code seems to work fine for computing PI using Hit & Miss Monte Carlo algorithm. In this code the variable 'c' is the...

alrededor de 8 años hace | 0

| aceptada

Respondida
Looping and Saving Values into an Array for Forward Euler Method Using While Loop
Hi, This can be achieved by calling a function repeatedly to perform the same task but for different values. To illustrate ...

alrededor de 8 años hace | 0

Respondida
How do I repeat a row a certain number of times?
Hi, This can be also done using the REPELEM command as follows: v = [1:4]; repelem(v,[3],[1]) Follow the link below ...

alrededor de 8 años hace | 2

Respondida
Matlab Parallel Toolbox Workers Aborted - continue serially?
Hi, An SpmdEnabled pool cannot continue once communication between workers or between workers and client has been lost. If yo...

alrededor de 8 años hace | 2

Respondida
Problem with while loop and matrix size.
Hi, It seems you are trying to access A(6) i.e. the sixth element in the array A and hence MATLAB is throwing an error. This ...

alrededor de 8 años hace | 1

Respondida
Get values from another GUI using handles or getapp / setapp
Hi, There are multiple ways of sharing data between GUIs. To illustrate one of the ways, I have created test1 and test2 GUIs...

alrededor de 8 años hace | 0

Respondida
Problem with GUI resolution issues.
Hi, If you consider using UNITS as NORMALIZED rather than CHARACTERS then this should resolve the issue. Also, do not deactiv...

alrededor de 8 años hace | 0

Respondida
modeling the program in matlab before coding
Hi Mahdi, This <http://www.mathworks.com/videos/hybrid-software-development-with-simulink-and-uml-tools-68870.html link> talk...

alrededor de 8 años hace | 0

| aceptada

Respondida
dfield6 errors with Matlab 2015
Hi, I tried debugging the attached code DFIELD6.M and could reproduce the above mentioned errors. If you replace all *if not...

alrededor de 8 años hace | 1

Respondida
Irregular (long-)time series is to be interpolated as well mean value and standard deviation to be calculated. How?
Hi Endric, # To interpolate the values for every minute you can use the INTERP1 function as explained <http://www.mathworks.c...

alrededor de 8 años hace | 0

Respondida
how to avoid overlapping when drawing dots using screen function?
Hi Jinyi, I do not have a Psychtoolbox installed currently and hence cannot reproduce this issue. But from the above code, I ...

alrededor de 8 años hace | 0

Respondida
How to change the ODE to be solved for different ranges in ODE45
Hi Marius, In this case both ODE1 and ODE2 can be represented in a single function by a minor change. Replace alpha with aplh...

alrededor de 8 años hace | 0

Respondida
Change default IDE layout
Hi James, The most recently used layout is generally loaded in MATLAB R2015b too. I have tried the same successfully. You can...

alrededor de 8 años hace | 1

| aceptada

Respondida
Value does not get updated the way it should in for loop
1. The 'Tip_Position_Output' will not increase/decrease by 'a' only while moving along the array 'Tip_Position_Output'. But the ...

más de 8 años hace | 0

Respondida
How can I make this code more efficient?
Hi, A good approach to study the performance of the above code would be to use a profiler. The profiler would expose the comp...

más de 8 años hace | 1

| aceptada

Respondida
MATLAB RK METHOD NOT GIVING ANY RESULT
It seems you are trying to build a GUI with callbacks which share data among them, but while trying to do this you do not observ...

más de 8 años hace | 0

Respondida
Burned in annotations Dicom
I understand that you want to extract manual burned in annotations from a DICOM file and by annotations you mean the METADATA of...

más de 8 años hace | 0

Cargar más