已回答
Can I call a class function from Simulink?
I'd suggest you take a look at the MATLAB System block, which is designed to support System objects in Simulink. System objects...

10 years 前 | 1

| 已接受

已回答
Dynamically specify namespace/package
A few pieces of documentation explain the behavior where the import list for the function does not update. From the <http://www...

10 years 前 | 0

已回答
How to efficiently use dependent properties if dependence is computational costly?
I would recommend you add a method to compute and update the value of your dependent property and then call that method from the...

10 years 前 | 8

| 已接受

已回答
Saving current progam folder path
It looks like you want to write a string to the text file, but SAVE is not a good fit for this. The help for SAVE -ASCII explai...

10 years 前 | 0

| 已接受

已回答
Please help write a script to display the first line of this text file using fgetl
You just need to use FOPEN to create a file handle, and then each call to FGETL on that handle will read a line of text. Here's...

10 years 前 | 0

已回答
Can't get Matlab compiler and loadlibrary to work
I suspect the correct reference page is <http://www.mathworks.com/help/compiler/matlab-library-loading.html here> (I'll report t...

10 years 前 | 1

| 已接受

已回答
how to download data from websites?
MATLAB supports importing data from OPenDAP sources <http://www.mathworks.com/help/matlab/import_export/importing-network-common...

10 years 前 | 0

已回答
How to read Simulink inputs from Matlab ?
This error suggests that you are not using a data format that the block supports. See the Specifying the Workspace Data section...

10 years 前 | 0

| 已接受

已回答
Debug and workspace of functions
Each function has its own separate workspace of variables, and you do not typically get visibility of the variables outside of y...

10 years 前 | 0

已回答
How can I arrange (collect) values for a couple of variables into a table outside "for loop" ?
This looks like a good use case for the <http://www.mathworks.com/help/matlab/ref/table.html TABLE> function in MATLAB. You can...

10 years 前 | 0

已回答
How to use vision.X functions in simulink?
From <http://www.mathworks.com/help/dsp/gs/use-system-objects-in-simulink.html Using System objects> in Simulink: You can in...

10 years 前 | 0

| 已接受

已回答
how to concatanate structures of different sizes?
From the doc for <http://www.mathworks.com/help/matlab/matlab_prog/concatenate-structures.html concatenating structures>: ...

10 years 前 | 0

已回答
How can I fetch values from 2 vectors of numbers without without changing their format.
You can control how MATLAB displays your data using FORMAT. This is independent of how MATLAB actually stores and handles your ...

10 years 前 | 0

已回答
how do you combine character array and a row vector
You can use STRVCAT to add a row to your char matrix: >> strvcat(names, numbers) ans = ellen bobby joe...

10 years 前 | 0

已回答
Help on creating structures??
You could enter your data into a two-column cell array and then use CELL2STRUCT: data = {'Krista', [10 5 1993]; ... ...

10 years 前 | 0

| 已接受

已回答
EngWinDemo Starts a New Instance?!
I suspect the issue is in trying to have the non-admin privileged engwindemo.exe connect to the admin privileged MATLAB process....

10 years 前 | 0

已回答
How do i use eval function when the sentence has apostrophe (') in it?
If you need EVAL, I'd suggest using SPRINTF to form your expression. This lets you see the command you are writing more natural...

10 years 前 | 0

已回答
How can I create a list of .m files currently open in the editor?
The MATLAB Editor API should handle this. Try: >> openFiles = matlab.desktop.editor.getAll; >> fileNames = {openFiles.Fil...

10 years 前 | 4

| 已接受

已回答
regexp to match certain words in a string
Looking at your string, I see parameter value pairs in the pattern of Param{Value}Param{Value}. If that is the case, then a reg...

10 years 前 | 0

| 已接受

已回答
Interface Matlab Project with C++ Project
Here are a couple more ways to consider interfacing MATLAB with C++: * Write <http://www.mathworks.com/help/matlab/matlab_ext...

10 years 前 | 1

| 已接受

已回答
How do I use regular expression to match the last character of a sentence?
Here's a regular expression that might be helpful, which matches if the last character in the string is "." or "!" or "?". >...

10 years 前 | 1

| 已接受

已回答
disp() output to command line significantly delayed, not right in time relative to the further program progress?
I would first suggest trying FPRINTF in place of DISP to see if that produces different behavior. Here is an example call: ...

10 years 前 | 0

| 已接受

已回答
how to find the depth from the image?
You can use IMFINFO to find the bit depth of an image. For example: >> info = imfinfo('ngc6543a.jpg'); >> info.BitDepth ...

10 years 前 | 1

已回答
Call embedded matlab function from command line
The code for the MATLAB Function block does not exist as a stand-alone file that you can call in MATLAB. However, you can progr...

11 years 前 | 0

| 已接受

已回答
How to use Comma delimiter for this .txt file. I have a file which looks like this. I have to separate them column wise with comma as delimiter. Urgent. Thanks in advance.
Assuming this text is in a file named mydata.txt and you want to read it into MATLAB, you can use TEXTSCAN. In the data, I see ...

11 years 前 | 0

已回答
setter fails/ gets passed by
I believe using the code below reproduces the unexpected behavior you write about, where a set on the top-level object does not ...

11 years 前 | 1

已回答
How can I change a simulink "matlab function" using the command window?
You can get and set the code for a MATLAB Function block using the steps in <http://www.mathworks.com/matlabcentral/answers/1026...

11 years 前 | 0

| 已接受

提问


Which MATLAB blogs should I follow?
I would like a list of blogs related to MATLAB to use for my own reading and to recommend to others. The blogs can be introduct...

11 years 前 | 3 个回答 | 3

3

个回答

已回答
Loading images from a .MAT file
The code shown only saves the names of the image files and not the image data itself. This is because the variable 'ListOfImage...

11 years 前 | 0

| 已接受

已回答
How do I use 'ErrorHandler' in arrayfun?
Rather than use ErrorHandler here, consider writing your logic into a function that acts on a scalar struct. This function woul...

11 years 前 | 0

| 已接受

加载更多