답변 있음
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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 전 | 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년 전 | 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년 전 | 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년 전 | 0

| 수락됨

문제를 풀었습니다


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년 전

문제를 풀었습니다


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년 전

문제를 풀었습니다


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년 전

더 보기