回答済み
How to set target matrix in matlab for training images?
click <https://in.mathworks.com/matlabcentral/answers/87202-training-set-and-target-set-and-output-in-matlab-neural-network here...

7年以上 前 | 0

回答済み
Extracting data from a text file into an array
<http://in.mathworks.com/help/matlab/import_export/ways-to-import-text-files.html Ways to Import Text Files>

7年以上 前 | 0

回答済み
Remove cell that contains strings of another cell array
strfind(a, b(kk))%find a string from string array

7年以上 前 | 0

回答済み
matlab not plotting in for loop, plz help.
use the line specifications and marker size to identify the plotted points plot(le,N2,'*k','Markersize',12) * If above c...

7年以上 前 | 0

| 採用済み

回答済み
ODBC TO WEB SERVICE CONNECTION
You have two options # You can call the .Net libraries from matlab ( <http://in.mathworks.com/help/matlab/using-net-libraries...

7年以上 前 | 1

| 採用済み

回答済み
Porous media reconstruction using a single 2D image
<https://www.mathworks.com/matlabcentral/fileexchange/58213-2d-3d-specific-surface-of-porous-media-using-2d-images 2D/3D specifi...

7年以上 前 | 0

| 採用済み

回答済み
What causes [Fatal Error] : 9:10: Content is not allowed in trailing section?
<http://in.mathworks.com/matlabcentral/answers/92146-why-do-i-receive-an-error-when-i-invoke-a-new-editor-session-in-matlab-7-6-...

7年以上 前 | 0

回答済み
is there a way to embed a GUI interface on a webpage?
<http://in.mathworks.com/help/matlab/ref/publish.html here> you can see the documentation of generating HTML view of matlab scri...

7年以上 前 | 0

回答済み
How to remove white background from image
refer <http://in.mathworks.com/matlabcentral/answers/155976-how-to-remove-background-from-an-image here> for related discussions...

7年以上 前 | 0

質問


Any one give me an example for false output in ismatrix.
I wondering if anyone point out a input which gives *false output for ismatrix*

8年弱 前 | 2 件の回答 | 2

2

回答

回答済み
How to create a multi-dimensional cell?
d=200; for itr=1:d result{itr}='normpdf(0,1)'; end

8年弱 前 | 1

回答済み
How to find all possible combination of a digits between first and last digits?
This is not the exact answer.But surely this will give you a idea for i=2:5 am=combntns(1:5,i); ...

8年弱 前 | 0

回答済み
How to retrieve stock data at a specific time on a specific day?
<http://in.mathworks.com/help/datafeed/yahoo.fetch.html#bt8xt87-1 data for the requested date.>, <https://www.mathworks.com/matl...

8年弱 前 | 0

回答済み
Audio/signal processing
<https://in.mathworks.com/matlabcentral/answers/115310-matlab-code-for-calculating-the-centre-frequency-of-a-signal MATLAB code ...

8年弱 前 | 0

| 採用済み

回答済み
Using a neural network made with MATLAB toolbox in LabView?
MATLAB® DataPlugin allows you to work with matlab files in Labview .Click <http://www.ni.com/example/29178/en/ here> for more de...

8年弱 前 | 0

回答済み
waitbar color, 2016a is broken red; how to set to older continuous green?
<https://in.mathworks.com/matlabcentral/answers/101667-how-do-i-change-the-color-of-the-bar-in-a-waitbar-in-matlab-7-5-r2007b wa...

8年弱 前 | 0

回答済み
dbhole.mat contains 334 files and each file contains data of[2xn]. I want that how many 'h'(i.e h1,h2 etc) are in each 'd' (i.e d1,d2, etc)
Below approach may solve your problem load dbhole nfile = struct2cell(whos) ret = nfile(1,1:end) Refer <http://in....

8年弱 前 | 0

回答済み
how I can import data file in genetic algorithm through Matlab
The below steps will guide you * Identify the File format * Read the file to import the data from file to matlab workspace <...

8年弱 前 | 0

回答済み
importing excel file time format
<http://in.mathworks.com/matlabcentral/answers/102106-why-does-the-date-format-change-in-matlab-using-xlsread-in-matlab-7-1-r14s...

8年弱 前 | 0

回答済み
HOW TO PLOT TABLE AND GRAPH
plot(data)%data is a 4x12 matrix excel data set(gca,'xticklabel',{'Jul-15','Aug-15','Sep-15','Oct-15','Nov-15','Dec-15','Ja...

8年弱 前 | 0

| 採用済み

回答済み
Simbiology Desktop Activate Reaction Using Event
Refer <http://in.mathworks.com/matlabcentral/answers/152864-triggering-events-in-simbiology-toolbox here> for related discussion...

8年弱 前 | 0

回答済み
how to open another gui from existing gui using push button ?
Refer the link <http://in.mathworks.com/matlabcentral/answers/273995-i-have-two-gui-in-matlab-and-i-want-to-make-gui-that-have-t...

8年弱 前 | 2

| 採用済み

回答済み
How can save an image without matlab altering any of the images's property
* Read the image using imread * ex. I=imread('test.jpg'); * Now the image pixel values available in the variable I * Otherwis...

8年弱 前 | 2

回答済み
How to compare similar lines of two text files
<http://in.mathworks.com/help/matlab/ref/visdiff.html Compare two text files>

8年弱 前 | 0

回答済み
Hi I hope are well, I am making a serial interface for communication between C and matlab Pic by Proteus, but I get this error because it can be?
* The variable 'c'not having even a single element * Make sure that 'c' receive the signal from Pic

8年弱 前 | 0

回答済み
The colums in my workspace are too small
You have to change the default array format. * Preferences. -->Variables.--Default array Format-->long-->apply

8年弱 前 | 0

回答済み
How to convert multiple binary image into one column each image?
Normally some feature are extracted from the images. And that feature values considered as input of pattern recognition <http:...

8年弱 前 | 1

回答済み
how to define what a function is doing
* Your function has two return variables(sol,val). * But you have assigned value for only one variable(val = cc) * The error m...

8年弱 前 | 0

回答済み
how do i send a stored array through udp from one pc to another??
<http://in.mathworks.com/matlabcentral/newsreader/view_thread/165759 here> you can find the working code with detailed dscussio...

8年弱 前 | 0

| 採用済み

さらに読み込む