回答済み
how to display / recall data in matlab
Seems To Me Like What You Want Is To Keep Track Of All Your If Conditions With A Logical Index index = B > 40 & B < 80; % yo...

約7年 前 | 0

回答済み
Why does it become four number in a line?
you accessed a 2d matrix with linear indexing, If you want to retain the dimentions of your matrix use subscripts instead: A(:...

約7年 前 | 0

回答済み
How to code with gui
You Can Start By Reading About App Designer https://www.mathworks.com/help/matlab/creating_guis/create-a-simple-app-or-gui-us...

約7年 前 | 0

回答済み
MATLAB pause does not seem to work
I just encountered the exact same weird issue... aparently you can switch pause on and off, and i got some piece of code from s...

約7年 前 | 1

回答済み
How to plot data points in different colors depending on condition?
you can use the conditions to create logical index masks of your data and plot only the relevant data for each condition: f1=fi...

7年以上 前 | 0

| 採用済み

回答済み
Gene Boundaries for Genetic Algorithm
data = randi(4, 1, 400); seq = 1:6; % if you mean the sum of that sequence you are looking for x = sum(seq, 2); if any(str...

7年以上 前 | 0

送信済み


Simple UI
This is an extension to the GUI layout toolbox which provides flow layout containers and some other stuff

7年以上 前 | ダウンロード 1 件 |

0.0 / 5
Thumbnail

質問


Is is necessary to use set/get functions?
Is it still necessary to use the set/get methods to set/get the properties of UI components? fig = figure(); fig.Color = 'whit...

7年以上 前 | 1 件の回答 | 1

1

回答

回答済み
how can I save the selected from radio button in text file?
It realy depends on the design of your GUI do you have a submit button or do you capture the selection of the radio button? If...

7年以上 前 | 0

回答済み
What is the decimal RGB scale used in Matlab called?
some functions like plot use color intensity values (between 0 and 1) to represent RGB values, instead of what you are used to a...

7年以上 前 | 1

回答済み
Duplicating the rows and columns of image, without using imresize.
The image is black because you are displaying zeros You say that you want to duplicate the rows and columns - I assume you mean...

7年以上 前 | 0

| 採用済み

回答済み
Extract values from double with for loop and calculate sum
Can also use accumarray to solve this one n = 10; xMax = 7; % generate the matrix as: [boolean, x, 1] % x is the column of...

7年以上 前 | 0

回答済み
Best way to loop through multiple subfolders and run either script A or B depending on folder name?
path = 'Whatever path your study folder lies in'; folders = split(genpath(path), ';'); matchExpA = cellfun(@any, regexpi(folde...

7年以上 前 | 0

回答済み
Difference in File Referencing
Without the Code We Can Only Speculate. But Using "File1.Tif'" generates A String Object While 'File1.Tif' Is A Character Array....

7年以上 前 | 0

| 採用済み

回答済み
Matlab function to take matrix as input and return elements in its four corners as output
I Don't See Any Particular Problem With That Line. The Problem Is Possibly That You Didn't Send Input Or Enough Input To corner...

7年以上 前 | 0

回答済み
How to determine if object has a defined event
Best method I found was ismember('EventName', events(obj));

7年以上 前 | 0

| 採用済み

回答済み
i have a martix A, i want missing numbers in the 2nd column as i explained? any help??
granted you always have 1:3 in the first column and values between 1 and 10 in the second: A = [1,3; 1,5; 1,6; 1,8; 1,10; 2,4; ...

7年以上 前 | 1

回答済み
Profiling a variable within a function
G = @(t) (floor(t/300)+1)*10; f = @(t) 5*t + G(t); t = 1:899; plot(t,f(t));

7年以上 前 | 0

| 採用済み

質問


How to determine if object has a defined event
Is there a way to determine if an object instance imlements an event like ismethod for methods and isprop for properties? I tri...

7年以上 前 | 1 件の回答 | 0

1

回答

回答済み
Help with textscan while reading misc data files
if you know how many lines you want to skip: fid = fopen('data.txt'); % your own filename comes in here a = cell2mat(textscan(...

7年以上 前 | 1

| 採用済み

回答済み
How do I make function which gets as input arguments matrix of chars work?
Kevin's Answer Is Correct Of Course, But If that Was The Problem You Were Facing You Would Have Had A Different Error About Ind...

7年以上 前 | 1

| 採用済み

回答済み
implementing a script that asks f
input Function Documentation modulo Function Documentation, Or You Can Search In Google And Find At Least Half A Dozen Links ...

7年以上 前 | 0

| 採用済み

回答済み
Stem plot inside a for loop
I didn't use your data because I have no idea what you want from it if exist('fig1', 'var') && ishandle(fig1) close(fig1);...

7年以上 前 | 0

回答済み
How to output function results over split columns
Figured it out... the problem is you use the end operator with a matrix that's not asigned yet or when you do preset it to a d...

7年以上 前 | 0

| 採用済み

回答済み
How to merge a set of struct files?
files = dir('data_*.mat'); % based on the names of the files you supplied c = cell(1,numel(files)); for i = 1:numel(files) ...

7年以上 前 | 1

| 採用済み

回答済み
How can i detect max value and his index ?
If you meant to split the array into subarrays according to locations of NaN, then find maximal values of each subarray but the ...

7年以上 前 | 1

回答済み
Transferring .mat files to workspace
Use dir Function To Loop Through All The Files And Load Them fileList = dir('Your_path_goes_here'); data = cell(); for fi =...

7年以上 前 | 0

| 採用済み

回答済み
Adding Bias To Random Walk
you can make a step & bias vector: stepCoordinates = [1,0;0,1;-1,0;0,-1]; % this creates the bias to the north bias = [ones(1...

7年以上 前 | 0

| 採用済み

回答済み
How to solve "Not Enough Input Arguments" Error?
you probably just ran the function using F5, didn't you? the function works, you just need to invoke it properly: A = pascal_t...

7年以上 前 | 1

| 採用済み

回答済み
GUI slider problem in edit_text
you can add a utility function that takes in the new value and sets it in the appropriate variable, and gets a list of controls ...

7年以上 前 | 0

さらに読み込む