Feeds
질문
How to fit multivariable equation?
I have n x 3 input data (n amount of examples for three properties) and n x 1 output data from real world observations. n is the...
5년 초과 전 | 답변 수: 1 | 0
1
답변답변 있음
I am trying to write data on to Excel on a specific but dynamic location (say not E1 or C3 but depending on what I have done in the code, row no. 2*i and column 4*y). Is it possible to do that?
You need to convert your row and column into cell name that xlswrite understands. cellname=[xlscol(column) num2str(row)]; You ...
I am trying to write data on to Excel on a specific but dynamic location (say not E1 or C3 but depending on what I have done in the code, row no. 2*i and column 4*y). Is it possible to do that?
You need to convert your row and column into cell name that xlswrite understands. cellname=[xlscol(column) num2str(row)]; You ...
거의 6년 전 | 0
답변 있음
Appdesigner does not open, shows black window
My graphics card had a hardware problem. Some applications were giving 1114 DLL error due to that, but MATLAB was merely showing...
Appdesigner does not open, shows black window
My graphics card had a hardware problem. Some applications were giving 1114 DLL error due to that, but MATLAB was merely showing...
거의 6년 전 | 1
| 수락됨
질문
Appdesigner does not open, shows black window
Hello, I just used appdesigner 2-3 days ago but now it wont open. I cannot reach it using appdesigner command. I cannot even ru...
대략 6년 전 | 답변 수: 1 | 0
1
답변질문
Selecting rows from a table using a column that includes Nan elements
Hello, I have a table and I am using one of it's columns to select rows. All data is char. Normally I can use this, ismember...
대략 6년 전 | 답변 수: 1 | 0
1
답변질문
How to erase newline character from string?
Hello, I am reading an xml file that contains new line (enter) character. How do I detect and erase it? text=a.Olay(1) ...
대략 6년 전 | 답변 수: 1 | 2
1
답변답변 있음
How can I plot two different datetime vectors in the same graph?
Comment if any part is not clear. first_date_array=datetime('today'):days(1):datetime('today')+days(10); %array for 10 ...
How can I plot two different datetime vectors in the same graph?
Comment if any part is not clear. first_date_array=datetime('today'):days(1):datetime('today')+days(10); %array for 10 ...
대략 6년 전 | 0
답변 있음
How to create large data in MATLAB. For large array showing out of memory.
You can use tall arrays. <https://www.mathworks.com/help/matlab/tall-arrays.html>
How to create large data in MATLAB. For large array showing out of memory.
You can use tall arrays. <https://www.mathworks.com/help/matlab/tall-arrays.html>
대략 6년 전 | 0
답변 있음
Subscripted assignment dimension mismatch.
First of all, f(x) is wrong. x=[]; f(x)=[1-a*((x1)^2)*(k) ; 0 ;0 ]; x is empty, how can it be an indice? And then, yo...
Subscripted assignment dimension mismatch.
First of all, f(x) is wrong. x=[]; f(x)=[1-a*((x1)^2)*(k) ; 0 ;0 ]; x is empty, how can it be an indice? And then, yo...
대략 6년 전 | 0
답변 있음
How do I minimise function with many outputs?
Please check <https://www.mathworks.com/matlabcentral/answers/347660-using-fminsearch-on-a-function-with-multiple-outputs>
How do I minimise function with many outputs?
Please check <https://www.mathworks.com/matlabcentral/answers/347660-using-fminsearch-on-a-function-with-multiple-outputs>
대략 6년 전 | 0
답변 있음
using webcam instead of an avi file ?
camera = webcam; pictures{1}=camera.snapshot; while true %well end it some point pictures{end+1}=camera.snapshot; ...
using webcam instead of an avi file ?
camera = webcam; pictures{1}=camera.snapshot; while true %well end it some point pictures{end+1}=camera.snapshot; ...
대략 6년 전 | 0
답변 있음
How do I combine datetime and double precision decimal data in one text file?
datestr is the function you are looking for. then, your date data is just a string. datestr(date,format) for example ...
How do I combine datetime and double precision decimal data in one text file?
datestr is the function you are looking for. then, your date data is just a string. datestr(date,format) for example ...
대략 6년 전 | 0
답변 있음
How to find indices of a rectangular region inside big matrix? | Efficiently
function result = stack (A,row_start,row_end,col_start,col_end) % A = [4 4 4 4 4 4 4 % 4 ...
How to find indices of a rectangular region inside big matrix? | Efficiently
function result = stack (A,row_start,row_end,col_start,col_end) % A = [4 4 4 4 4 4 4 % 4 ...
대략 6년 전 | 0
답변 있음
How do i set the marker and line commands to accept the symbols as inputs
You need to make it input('Refer to the PDF document for valid inputs: ','s') Check input help page for the reason of par...
How do i set the marker and line commands to accept the symbols as inputs
You need to make it input('Refer to the PDF document for valid inputs: ','s') Check input help page for the reason of par...
대략 6년 전 | 0
답변 있음
MATLAB OOP: Return value from constructor not possible
You can use a static method. They can be used like functions. You could do Data=P.load(filename) with them but they do not aut...
MATLAB OOP: Return value from constructor not possible
You can use a static method. They can be used like functions. You could do Data=P.load(filename) with them but they do not aut...
대략 6년 전 | 0
답변 있음
Reading different columns from excel in Matlab
As a weird feature, xlsread ignores rows that does not include any number. Therefore your 'data' variable is 601 x n. Read data...
Reading different columns from excel in Matlab
As a weird feature, xlsread ignores rows that does not include any number. Therefore your 'data' variable is 601 x n. Read data...
대략 6년 전 | 1
| 수락됨
답변 있음
Changing the name of the variables in table
You can do that on initialization, a=table(1,2,3,'VariableNames',{'One','Two','Final'}) or after creation, a.Proper...
Changing the name of the variables in table
You can do that on initialization, a=table(1,2,3,'VariableNames',{'One','Two','Final'}) or after creation, a.Proper...
대략 6년 전 | 0
| 수락됨
질문
How can I print small circles?
*Problem* I am trying to print small (diameter=0.02 cm etc) filled circles to pdf in exact size. I am able to print exact circ...
대략 6년 전 | 답변 수: 1 | 0
1
답변답변 있음
Reading Multiple excel spreadsheets in MATLAB GUI
I am not familiar with guide but xlsread reads one sheet at a time. You can get the number and name of sheets by xlsinfo and the...
Reading Multiple excel spreadsheets in MATLAB GUI
I am not familiar with guide but xlsread reads one sheet at a time. You can get the number and name of sheets by xlsinfo and the...
대략 6년 전 | 0
| 수락됨