답변 있음
What does the line t = 0:1/3000:0.2; mean in the following code:
it means t varies from t = 0 to 0.2 in steps of 1/3000 try help :

거의 9년 전 | 0

| 수락됨

답변 있음
How to convert UTC timehour into IST time hour?
https://www.mathworks.com/matlabcentral/fileexchange/59040-utc-to-ist-utc-time-

거의 9년 전 | 0

답변 있음
Matlab modify inputdlg buttons
Cancel and OK are hardcoded in inputdlg OKHandle=uicontrol(InputFig , ... BtnInfo , ... 'Po...

거의 9년 전 | 0

| 수락됨

답변 있음
how can I read a grd file in matlab? do I need any toolbox?
https://www.mathworks.com/matlabcentral/fileexchange/26289-grdinfo2

거의 9년 전 | 1

| 수락됨

답변 있음
grouping string values in matlab
read using xlsread sort column 2 using sort

거의 9년 전 | 0

답변 있음
matlab uicontrol using figure
You can have a for loop around an uicontrol Values = {'csdrkjvnscklenkvt', '1', '2', '3'...and so on till 9}; PositionAr...

거의 9년 전 | 0

답변 있음
what is that mean for x when I got x= 5.6250+5.5551i and x=x= 5.6250+5.5551i? and what is i mean?
i is the imaginary part of the value. https://en.wikipedia.org/wiki/Imaginary_number

거의 9년 전 | 0

답변 있음
Why Is Not the Handles Variable Updated?
Your code should work. Alternatively you can make myfun1 to return handles instead of using guidata to update handles. f...

거의 9년 전 | 1

답변 있음
How do i store new data into an existing cell array?
once you have myArray = {NaN, 'm', 'b', NaN}; and myArray *1* = {NaN, NaN, NaN, 'n'};, you can run a for loop over them and con...

거의 9년 전 | 0

답변 있음
How Do I Change a Block Parameter Based on the Output of Another Block?
Use values from workspace. For example, create variables in workspace tms=1, kms=5. use these variables instead of the direct va...

거의 9년 전 | 1

| 수락됨

답변 있음
Have Matlab run in Background from command line
You can look for existing instance of MATLAB and use it for running the new code. I would do something like this [python]. ...

거의 9년 전 | 0

| 수락됨

답변 있음
random extraction of files from a folder
You can do a dir in that folder for a list of files. Use a random number generator of 2000 length. Select the file based on ...

거의 9년 전 | 0

답변 있음
Help Writing this input
if age<0 output = 'ERROR'; elseif age>0 && age<12 output = 'Younger than a Teenager'; elseif age>12 && age<1...

거의 9년 전 | 0

답변 있음
How to store data from my IF loop
you wrap a for loop on top of your code. for iloop=1:672 q=dataIn(iloop); if q=q1 p=p1 else if q=q2+q1 ...

거의 9년 전 | 0

답변 있음
How to create inputdlg for running program by its path?
Your 'answer' is of type cell. so do it this way, prompt={'Zadejte svou adresu pro spuštění EIDORS:'}; name = 'Spuště...

거의 9년 전 | 0

| 수락됨

답변 있음
GUI didn't update plot
You have changed the plot in the callback of the drop down menu? There is a good example taht comes with MATLAB GUI. Type g...

거의 9년 전 | 0

답변 있음
Finding the maximums of functions in loops
What you are trying to do in for i=1:n v(i)=v(i); a_num(i)=a_num(i); x_num(i)=x_num(i...

거의 9년 전 | 0

질문


What is "Cache Software architecture objects simulink" during Simulink model update? and why does it take a long time?
Hi All, I am simulating a Simulink Model in MATLAB R2011B. The Compilation phase takes a long time. Upon doing sldiagnostics('s...

거의 9년 전 | 답변 수: 1 | 0

1

답변

답변 있음
How to open files with *.log extension? The format is the follow,
what data you want to extract? You can use a textscan doc textscan fid = fopen('Test_file1.txt','r'); formatSpec...

거의 9년 전 | 0

| 수락됨

답변 있음
matlab array to numpy array
write the numpy array into mat file and load it into MATLAB.

거의 9년 전 | 0

답변 있음
How to creat .csv file in matlab?
read data from excel using xlsread and write using csvwrite. doc xlsread doc csvwrite

거의 9년 전 | 0

답변 있음
How to Clear all Variables of a Workspace Except for Those Explicitly Excluded?
http://www.mathworks.com/matlabcentral/fileexchange/181-keep

거의 9년 전 | 3

답변 있음
how to create checkboard using matrix?
white100_100 =repmat(1, 100, 100);%1-white color black100_100 =repmat(0, 100, 100);%0-black color chessboardMatrix = rep...

거의 9년 전 | 0

답변 있음
Use a value from the m file in a excel sheet
You can write into excel using xlswrite. doc xlswrite

거의 9년 전 | 0

답변 있음
Expression or statement is incomplete or incorrect
you cant use *or*. Instead use *||* And your for loop is also incomplete. May be you wanted to do this.. LVecArray = ...

거의 9년 전 | 0

| 수락됨

답변 있음
I need to sum data given every 15 min to a daily sum....the issues is, some data is missing so I can't just write a code to sum every 96 rows....
You can convert the date in first column to datestring using *datestr* function. eg datestr(BD_PA_2014_2015(1:end, 1),2...

거의 9년 전 | 0

답변 있음
Signal Recovery on Simulink
You can log the data using Simulink logging and access data at the end of simulation. https://in.mathworks.com/help/simulink/...

거의 9년 전 | 0

답변 있음
matlab GUI/UICONTROL display text and numeric data in figure
You can create a MATLAB Figure. The drop Down can be modelled using a popup menu. If you need an example, you can type *gu...

거의 9년 전 | 0

답변 있음
Hi I would like to ask how to call or add a function in mfile in another script file. I am using matlab 2013a. thank you
say your function is defined in a file abc.m, and the name of the function is abc(), then you can call abc() in any of your o...

거의 9년 전 | 0

| 수락됨

답변 있음
Generation of standalone executable file from GUI
You need a product called MATLAB COMPILER in the PC where you want to use the GUI. https://www.mathworks.com/products/compile...

거의 9년 전 | 0

더 보기