답변 있음
what i should do when i have so many component in guide?
Go for tabbed GUI. Its all about design!

5년 초과 전 | 0

| 수락됨

답변 있음
In App Designer, how to include a clickable link to an url in uitextarea?
Tried very hard for one of my apps. Can't be done in appdesigner. GUIde is better for doing this!

5년 초과 전 | 0

| 수락됨

답변 있음
need matlab code for speech to text from audio
https://in.mathworks.com/matlabcentral/fileexchange/?utf8=%E2%9C%93&term=speech+to+text

5년 초과 전 | 0

답변 있음
How to set simulink block parameters (customized) from GUI
I think you should remove assigning value to seed in your model. persistent rngInit; if isempty(rngInit) %seed = 2346; ...

5년 초과 전 | 0

| 수락됨

답변 있음
How do I write images to a specific folder ?
You can give the full file path to imwrite. FILENAME = ['C:\Edgeresults\', filename1]; imwrite(A,FILENAME,FMT)

5년 초과 전 | 1

| 수락됨

답변 있음
where is the "build" button in code generation?
Please check Simulink Preferences window. The button can be enabled by enabling the checkbox.

5년 초과 전 | 0

답변 있음
fortran convert to Matlab
You may try this. Not sure if it works. https://in.mathworks.com/matlabcentral/fileexchange/5260-benbarrowes-f2matlab

5년 초과 전 | 0

답변 있음
Obfuscation and traceability information generation cannot both be enabled at the same time.
Do you really need the traceability info? If not, you may do as suggested in the warning. "Disable Obfuscation or disable bot...

5년 초과 전 | 0

답변 있음
How to access all the matfiles in afolder and our aim is to plot all the signals in single window
You can use what or dir to find all the mat files in a folder. And then use load to load all th...

5년 초과 전 | 0

답변 있음
Guide handing objects to functions
function checkThis(this, that, handles) checkThis = get(eval(['handles.', this]), 'Value'); checkThat = get(eval(['handl...

5년 초과 전 | 0

| 수락됨

답변 있음
How can I update the data in slx file without matlab/simulink?
Its much simpler.. When you zip again, dont select the whole folder. Select the sub-folders and zip. In other words, when you...

5년 초과 전 | 1

| 수락됨

답변 있음
I would like to know the files extensions of old MATLAB version and the new versions. Your help will great appreciate it
You can go through File extensions section of https://en.wikipedia.org/wiki/MATLAB

5년 초과 전 | 0

| 수락됨

답변 있음
New user, can someone solve this? I know I need to use colon and element-wise.
x = -2:0.5:2;%creates an array x with elements -2 to 2 with step size 0.5 y = 3*x.*x + 2*x -6

5년 초과 전 | 0

| 수락됨

답변 있음
How to get a UI to capture start and end date from user.
Try this.. https://undocumentedmatlab.com/blog/date-selection-components

거의 6년 전 | 0

답변 있음
hello All, please any help!! How to import an Excel data of a 9x9 matrix in to GUI ???thanks you a lot
Into GUI? Meaning you have an uitable in your GUI? try xlsread - to read data from excel. try set(handles.uitable, 'Data...

거의 6년 전 | 1

답변 있음
How to I convert rgb image to hsv format in matlab ?
https://in.mathworks.com/help/matlab/ref/rgb2hsv.html

거의 6년 전 | 0

| 수락됨

답변 있음
License checkout failed, Manager error
It just says all the available network licenses are in use. If you know the license server address and port, you can find the...

거의 6년 전 | 0

답변 있음
Display results in GUI and real time
Completely possible. https://in.mathworks.com/matlabcentral/fileexchange/24861-41-complete-gui-examples is a great staring po...

거의 6년 전 | 0

답변 있음
Silent install of Matlab MCR_R2017b using Batchpatch
I think you just need to copy the installer file (example: my_installer_input) to a location in the host PC and do setup.exe ...

거의 6년 전 | 0

답변 있음
saving a figure as .png with name of a parameter
You cant have "/" in your file names. Can you be happy with say name=strcat('quicklook_',dd, '_', mm, '_', yyyy); ?

거의 6년 전 | 0

| 수락됨

질문


open_system modality
Hello all, I have a script that opens up simulink block properties by using open_system. I want the script to wait till the use...

거의 6년 전 | 답변 수: 0 | 0

0

답변

답변 있음
Using xlsread values from column P and forward
What kind of data do you have in your excel file? xlsread can have three outputs, numbers, text and raw. Which of it are you us...

거의 6년 전 | 0

| 수락됨

답변 있음
Liberal Use of GoTo/From Blocks
You may read more here. <https://stackoverflow.com/questions/20204253/in-simulink-are-goto-and-from-blocks-generally-cons...

거의 6년 전 | 0

답변 있음
Difference between "Host Target" and "Embedded Target"
Host Target means you build your code and code runs on your PC. (This is normally done as a prevalidation step) before you take ...

거의 6년 전 | 0

| 수락됨

답변 있음
Matrix size exchanges between Matlab and Excel
It is possible. read help xlsread help xlswrite

거의 6년 전 | 0

답변 있음
For-loop, inserting loopcount into string output
disp(['Error in row ', num2str(i)]);

거의 6년 전 | 0

답변 있음
How can I get the measurements of the simulink block by m program file?
https://in.mathworks.com/help/simulink/ug/accessing-block-data-during-simulation.html

거의 6년 전 | 0

답변 있음
How do I do a For Loop with two variables?
Then you dont need two for loops. for i=1:41 j=i; ....do something ... end By the way, i and j are po...

거의 6년 전 | 0

답변 있음
Set step time in Simulink
You have set the solver? set_param('Solver', 'FixedStepDiscrete');

거의 6년 전 | 1

답변 있음
How to callback variable and command in any function using App Designer
set the mmc to the app object in the startup function. In other functions you can use the app object. % In startup functio...

거의 6년 전 | 0

더 보기