Programming Languages:
Python, MATLAB
Spoken Languages:
English, French
Python, MATLAB
Spoken Languages:
English, French
Feeds
已回答
Python to Matlab property decorator function in class
classdef Celsius < handle properties temperature end methods function obj = Celsius(temperature...
Python to Matlab property decorator function in class
classdef Celsius < handle properties temperature end methods function obj = Celsius(temperature...
3 years 前 | 0
已提交
Zoom mode (h-axis, y-axis or both axis) set by mouse position
Switch between vertical/horizontal/both axis zoom mode by moving the mouse above the figure.
7 years 前 | 1 次下载 |
已回答
can anybody tell me the code how to find sum of series for a complex function?
What you want to compute looks like convolutions. I think there is a mistake in the CCF expression which does not depend on k. W...
can anybody tell me the code how to find sum of series for a complex function?
What you want to compute looks like convolutions. I think there is a mistake in the CCF expression which does not depend on k. W...
8 years 前 | 1
已回答
how to find sum of series for a complex function?
What you want to compute looks like a convolution. Would this do the work ? Note that CCF does not depend on k in your expressio...
how to find sum of series for a complex function?
What you want to compute looks like a convolution. Would this do the work ? Note that CCF does not depend on k in your expressio...
8 years 前 | 0
已回答
How to change a 3 dimensional matrix to 2 dimensinal?
If A is your matrix, you can use squeeze(A)
How to change a 3 dimensional matrix to 2 dimensinal?
If A is your matrix, you can use squeeze(A)
8 years 前 | 0
| 已接受
已回答
How to convert binary elements of a cell into decimal number
Here I create a cell of size 16 (and not 1624) as an example a = {1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1}; Resha...
How to convert binary elements of a cell into decimal number
Here I create a cell of size 16 (and not 1624) as an example a = {1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1}; Resha...
8 years 前 | 0
已回答
Preallocating memory for a cell array of unknown size & removing the empty rows in cells array
You can use the following cell function : A(~cellfun('isempty',A))'
Preallocating memory for a cell array of unknown size & removing the empty rows in cells array
You can use the following cell function : A(~cellfun('isempty',A))'
8 years 前 | 4
已回答
Re-naming Text files in many folders using matlab
Use the following function GetAllSubDirAndFiles(main_folder) where main_folder is the path to the folder containing all the subf...
Re-naming Text files in many folders using matlab
Use the following function GetAllSubDirAndFiles(main_folder) where main_folder is the path to the folder containing all the subf...
8 years 前 | 0
已回答
To find a vector subset of a matrix in sequence?
Here is a solution in one line : A = [1 2 3]; B = [2 3 4 1; 1 2 3 4; 2 4 1 3; 2 3 1 4]; % Reshape B in a 1D array...
To find a vector subset of a matrix in sequence?
Here is a solution in one line : A = [1 2 3]; B = [2 3 4 1; 1 2 3 4; 2 4 1 3; 2 3 1 4]; % Reshape B in a 1D array...
8 years 前 | 1
| 已接受
提问
Why do array of dynamical properties not behave like array of properties ?
Why do dynamical properties behave differently than usual properties when getting them ? Let us say I have one array of objec...
8 years 前 | 1 个回答 | 1
1
个回答提问
Memory leak when calling DOS command in a loop
I have running an executable file using the "dos" command. This file is a compiled .lua file doing some calculations : for ...
9 years 前 | 1 个回答 | 2
1
个回答提问
Time-independent 2D Schrodinger equation with non separable potential
I would like to solve the time-independent 2D Schrodinger equation for a non separable potential using exact diagonalization. I ...
11 years 前 | 3 个回答 | 0