Community Profile

photo

sam0037

MathWorks

2015 年からアクティブ

Followers: 0   Following: 0

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

統計

All
  • Knowledgeable Level 2
  • First Answer
  • Solver

バッジを表示

Feeds

表示方法

回答済み
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...

8年弱 前 | 0

回答済み
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 ...

8年弱 前 | 1

| 採用済み

回答済み
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...

8年弱 前 | 1

回答済み
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....

約8年 前 | 0

回答済み
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 ...

約8年 前 | 1

回答済み
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 ...

約8年 前 | 0

| 採用済み

回答済み
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 ...

約8年 前 | 0

回答済み
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...

約8年 前 | 0

回答済み
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...

約8年 前 | 0

| 採用済み

回答済み
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...

約8年 前 | 0

回答済み
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...

約8年 前 | 0

回答済み
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...

約8年 前 | 1

| 採用済み

回答済み
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 ...

約8年 前 | 0

| 採用済み

回答済み
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...

約8年 前 | 0

| 採用済み

回答済み
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 ...

約8年 前 | 0

回答済み
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 ...

約8年 前 | 2

回答済み
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...

約8年 前 | 2

回答済み
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 ...

約8年 前 | 1

回答済み
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...

約8年 前 | 0

回答済み
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...

約8年 前 | 0

回答済み
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...

約8年 前 | 0

| 採用済み

回答済み
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...

約8年 前 | 1

回答済み
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...

約8年 前 | 0

回答済み
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 ...

約8年 前 | 0

回答済み
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...

約8年 前 | 0

回答済み
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...

約8年 前 | 1

| 採用済み

回答済み
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 ...

8年以上 前 | 0

回答済み
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...

8年以上 前 | 1

| 採用済み

回答済み
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...

8年以上 前 | 0

回答済み
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...

8年以上 前 | 0

さらに読み込む