Answered
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 ago | 1

| accepted

Answered
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 ago | 0

Answered
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 ago | 8

| accepted

Answered
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...

11 years ago | 0

| accepted

Answered
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...

11 years ago | 0

Answered
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...

11 years ago | 1

| accepted

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

11 years ago | 0

Answered
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...

11 years ago | 0

| accepted

Answered
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...

11 years ago | 0

Answered
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...

11 years ago | 0

Answered
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...

11 years ago | 0

| accepted

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

11 years ago | 0

Answered
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 ...

11 years ago | 0

Answered
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...

11 years ago | 0

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

11 years ago | 0

| accepted

Answered
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....

11 years ago | 0

Answered
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...

11 years ago | 0

Answered
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...

11 years ago | 4

| accepted

Answered
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...

11 years ago | 0

| accepted

Answered
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...

11 years ago | 1

| accepted

Answered
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 "?". >...

11 years ago | 1

| accepted

Answered
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: ...

11 years ago | 0

| accepted

Answered
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 ...

11 years ago | 1

Answered
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 ago | 0

| accepted

Answered
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 ago | 0

Answered
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 ago | 1

Answered
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 ago | 0

| accepted

Solved


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

11 years ago

Solved


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

11 years ago

Solved


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

11 years ago

Load more