統計
All
Feeds
回答済み
Simulink Project with R2010b
I think that Simulink Project first shipped with release 2011b. If you're asking if there is some way to add Simulink Project...
Simulink Project with R2010b
I think that Simulink Project first shipped with release 2011b. If you're asking if there is some way to add Simulink Project...
11年以上 前 | 0
| 採用済み
質問
Why isn't there a bsxfun block in Simulink?
Recently, I have found myself adding 1-line MATLAB Function Blocks to some models, of the form (though not necessarily always wi...
11年以上 前 | 1 件の回答 | 1
1
回答回答済み
Solving a Cubic Equation
The built-in function *roots* is what you're looking for.
Solving a Cubic Equation
The built-in function *roots* is what you're looking for.
約12年 前 | 0
| 採用済み
回答済み
better way to improve performance of my code
Using varargin is what's killing you. You can get avoid this by constructing the cell array in the calling code, rather than re...
better way to improve performance of my code
Using varargin is what's killing you. You can get avoid this by constructing the cell array in the calling code, rather than re...
約12年 前 | 0
回答済み
Input parser: default argument depends on another required argument, how to do this?
function yourFunction(n, varargin) p = inputParser; p.addRequired('n', @(x)(true)); p.addParamValue('opt1', zer...
Input parser: default argument depends on another required argument, how to do this?
function yourFunction(n, varargin) p = inputParser; p.addRequired('n', @(x)(true)); p.addParamValue('opt1', zer...
約12年 前 | 0
回答済み
How to define a variable that store its value after closing MATLAB file?
If you're getting undefined variable errors for something you thought was supposed to be a global, then you haven't defined it t...
How to define a variable that store its value after closing MATLAB file?
If you're getting undefined variable errors for something you thought was supposed to be a global, then you haven't defined it t...
約12年 前 | 0
回答済み
getting error Subscript indices must either be real positive integers or logicals.
I'm assuming that you are intending p to operate as a function, but maybe you are not passing in a function handle? Matlab ap...
getting error Subscript indices must either be real positive integers or logicals.
I'm assuming that you are intending p to operate as a function, but maybe you are not passing in a function handle? Matlab ap...
12年以上 前 | 1
| 採用済み
回答済み
structure in class
Have a look at inputParser. My typical class constructor goes something like this: function obj = myclass(varargin) p =...
structure in class
Have a look at inputParser. My typical class constructor goes something like this: function obj = myclass(varargin) p =...
12年以上 前 | 2
回答済み
read data from filenames in dir structure with function
Is this the first line of read_datafiles.m ? function [data1 data2] = read_datafiles(files, PathName) I would guess t...
read data from filenames in dir structure with function
Is this the first line of read_datafiles.m ? function [data1 data2] = read_datafiles(files, PathName) I would guess t...
12年以上 前 | 0
| 採用済み
回答済み
Slow down when accessing arrays
How much memory in your computer, and how big is N? If you run out of available physical memory, then you will spend a lot of t...
Slow down when accessing arrays
How much memory in your computer, and how big is N? If you run out of available physical memory, then you will spend a lot of t...
12年以上 前 | 0
回答済み
Adding zeroes to Row Vector using a script
It would be simple if you guaranteed that numel(x)/M is always an integer, but without that guarantee: function y = zero_in...
Adding zeroes to Row Vector using a script
It would be simple if you guaranteed that numel(x)/M is always an integer, but without that guarantee: function y = zero_in...
12年以上 前 | 0
| 採用済み